diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
index 28fc0fe6e..87a968b4a 100644
--- a/.github/pull_request_template.md
+++ b/.github/pull_request_template.md
@@ -41,6 +41,5 @@
- [ ] Sample app is updated with new SDK changes
-- [ ] Updated public documentation with new SDK changes ([Immutable X](https://docs.immutable.com/docs/x/sdks/unity) and [Immutable zkEVM](https://docs.immutable.com/docs/zkEVM/sdks/unity))
-- [ ] Sample game is updated with new SDK changes
+- [ ] Updated public documentation with new SDK changes
- [ ] Replied to GitHub issues
diff --git a/.github/workflows/update-zkevm-api-package.yml b/.github/workflows/update-zkevm-api-package.yml
deleted file mode 100644
index d82808413..000000000
--- a/.github/workflows/update-zkevm-api-package.yml
+++ /dev/null
@@ -1,135 +0,0 @@
----
-name: Update zkEVM API Package
-
-on:
- workflow_dispatch:
- schedule:
- - cron: '0 10 * * *'
-
-env:
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-
-jobs:
- update-api:
- runs-on: ubuntu-latest
- steps:
- - name: Check out repository
- uses: actions/checkout@v3
-
- - name: Pull files from Git LFS
- run: git lfs pull
-
- - name: Get current date and time
- id: date
- run: echo "::set-output name=date::$(date +'%Y-%m-%d-%H-%M-%S')"
-
- - name: Download remote openapi.json
- run: curl -o openapi.json https://imx-openapiv3-mr-sandbox.s3.us-east-2.amazonaws.com/openapi.json
-
- - name: Ensure local openapi.json exists (if not, create an empty one)
- run: |
- if [ ! -f ./src/Packages/ZkEvmApi/api~/openapi.json ]; then
- echo "Creating empty openapi.json file..."
- mkdir -p ./src/Packages/ZkEvmApi/api~
- echo "{}" > ./src/Packages/ZkEvmApi/api~/openapi.json
- fi
-
- - name: Compare openapi.json files
- id: comparison
- run: |
- if diff openapi.json ./src/Packages/ZkEvmApi/api~/openapi.json > /dev/null; then
- echo "::set-output name=difference::false"
- else
- echo "::set-output name=difference::true"
- fi
-
- - name: Generate API if there are differences
- if: steps.comparison.outputs.difference == 'true'
- run: |
- wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.8.0/openapi-generator-cli-7.8.0.jar -O openapi-generator-cli.jar
- java -jar openapi-generator-cli.jar generate -i openapi.json -g csharp \
- --library unityWebRequest -o ./ZkEvmApi \
- --skip-validate-spec \
- --additional-properties=apiName=ImmutableZkEvmApi,packageName=Immutable.Api.ZkEvm
-
- - name: Copy generated files
- if: steps.comparison.outputs.difference == 'true'
- run: |
- mkdir -p ./src/Packages/ZkEvmApi/api~
- mkdir -p ./src/Packages/ZkEvmApi/Documentation~
- mkdir -p ./src/Packages/ZkEvmApi/Runtime
-
- # Clear contents while preserving .meta files
- find ./src/Packages/ZkEvmApi/api~ -type f ! -name '*.meta' -exec rm {} +
- find ./src/Packages/ZkEvmApi/Documentation~ -type f ! -name '*.meta' -exec rm {} +
- find ./src/Packages/ZkEvmApi/Runtime -type f ! -name '*.meta' -exec rm {} +
-
- cp -r ./ZkEvmApi/api/* ./src/Packages/ZkEvmApi/api~/
- cp -r ./ZkEvmApi/docs/* ./src/Packages/ZkEvmApi/Documentation~/
- cp -r ./ZkEvmApi/src/Immutable.Api.ZkEvm/* ./src/Packages/ZkEvmApi/Runtime/
- cp openapi.json ./src/Packages/ZkEvmApi/api~/openapi.json
-
- # Remove .meta files that do not have corresponding files
- for dir in ./src/Packages/ZkEvmApi/Runtime; do
- for meta_file in "$dir"/*.meta; do
- # Check if the corresponding file exists
- base_file="${meta_file%.meta}"
- if [ ! -e "$base_file" ]; then
- echo "Deleting unmatched meta file: $meta_file"
- rm "$meta_file"
- fi
- done
- done
-
- - name: Clean up
- if: steps.comparison.outputs.difference == 'true'
- run: |
- rm -rf ./ZkEvmApi
- rm openapi-generator-cli.jar
- rm openapi.json
-
- - name: Open sample app in Unity to generate .meta files
- if: steps.comparison.outputs.difference == 'true'
- uses: game-ci/unity-test-runner@v4
- env:
- UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
- UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
- UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }}
- with:
- unityVersion: 2021.3.26f1
- projectPath: './sample'
- githubToken: ${{ secrets.GITHUB_TOKEN }}
- testMode: 'EditMode'
-
- - name: Create a new branch
- if: steps.comparison.outputs.difference == 'true'
- run: |
- git config --global user.email "action@github.com"
- git config --global user.name "GitHub Action"
- git checkout -b feat/update-zkevm-api-${{ steps.date.outputs.date }}
-
- - name: Commit changes
- id: commit_changes
- if: steps.comparison.outputs.difference == 'true'
- run: |
- git add ./src/Packages/ZkEvmApi/
- if [ -n "$(git diff --cached)" ]; then
- git commit -m "feat: update immutable zkEVM API package"
- echo "commit=true" >> $GITHUB_ENV
- else
- echo "No changes to commit."
- echo "commit=false" >> $GITHUB_ENV
- fi
-
- - name: Push changes
- if: env.commit == 'true'
- run: |
- git push origin feat/update-zkevm-api-${{ steps.date.outputs.date }}
-
- - name: Create pull request
- if: env.commit == 'true'
- run: |
- gh pr create --title "feat: update immutable zkEVM API package" \
- --body "Update Immutable zkEVM API package" \
- --base main \
- --head feat/update-zkevm-api-${{ steps.date.outputs.date }}
\ No newline at end of file
diff --git a/sample-unity6/Packages/manifest.json b/sample-unity6/Packages/manifest.json
index 0d095e5f4..bfc7b099f 100644
--- a/sample-unity6/Packages/manifest.json
+++ b/sample-unity6/Packages/manifest.json
@@ -2,7 +2,6 @@
"dependencies": {
"com.alttester.sdk": "2.2.5",
"com.cysharp.unitask": "2.3.3",
- "com.immutable.api.zkevm": "file:../../src/Packages/ZkEvmApi",
"com.immutable.passport": "file:../../src/Packages/Passport",
"com.unity.2d.pixel-perfect": "5.1.1",
"com.unity.collab-proxy": "2.9.3",
diff --git a/sample/Assets/Scenes/ZkEvmApi.meta b/sample/Assets/Scenes/ZkEvmApi.meta
deleted file mode 100644
index a76a1dd29..000000000
--- a/sample/Assets/Scenes/ZkEvmApi.meta
+++ /dev/null
@@ -1,3 +0,0 @@
-fileFormatVersion: 2
-guid: 0810003d912141b2960ec9dfa5f49b63
-timeCreated: 1747115870
diff --git a/sample/Assets/Scenes/ZkEvmApi/LinkWallet.unity b/sample/Assets/Scenes/ZkEvmApi/LinkWallet.unity
deleted file mode 100644
index 29cc8172e..000000000
--- a/sample/Assets/Scenes/ZkEvmApi/LinkWallet.unity
+++ /dev/null
@@ -1,6240 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!29 &1
-OcclusionCullingSettings:
- m_ObjectHideFlags: 0
- serializedVersion: 2
- m_OcclusionBakeSettings:
- smallestOccluder: 5
- smallestHole: 0.25
- backfaceThreshold: 100
- m_SceneGUID: 00000000000000000000000000000000
- m_OcclusionCullingData: {fileID: 0}
---- !u!104 &2
-RenderSettings:
- m_ObjectHideFlags: 0
- serializedVersion: 9
- m_Fog: 0
- m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
- m_FogMode: 3
- m_FogDensity: 0.01
- m_LinearFogStart: 0
- m_LinearFogEnd: 300
- m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
- m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
- m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
- m_AmbientIntensity: 1
- m_AmbientMode: 3
- m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
- m_SkyboxMaterial: {fileID: 0}
- m_HaloStrength: 0.5
- m_FlareStrength: 1
- m_FlareFadeSpeed: 3
- m_HaloTexture: {fileID: 0}
- m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
- m_DefaultReflectionMode: 0
- m_DefaultReflectionResolution: 128
- m_ReflectionBounces: 1
- m_ReflectionIntensity: 1
- m_CustomReflection: {fileID: 0}
- m_Sun: {fileID: 0}
- m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1}
- m_UseRadianceAmbientProbe: 0
---- !u!157 &3
-LightmapSettings:
- m_ObjectHideFlags: 0
- serializedVersion: 12
- m_GIWorkflowMode: 1
- m_GISettings:
- serializedVersion: 2
- m_BounceScale: 1
- m_IndirectOutputScale: 1
- m_AlbedoBoost: 1
- m_EnvironmentLightingMode: 0
- m_EnableBakedLightmaps: 0
- m_EnableRealtimeLightmaps: 0
- m_LightmapEditorSettings:
- serializedVersion: 12
- m_Resolution: 2
- m_BakeResolution: 40
- m_AtlasSize: 1024
- m_AO: 0
- m_AOMaxDistance: 1
- m_CompAOExponent: 1
- m_CompAOExponentDirect: 0
- m_ExtractAmbientOcclusion: 0
- m_Padding: 2
- m_LightmapParameters: {fileID: 0}
- m_LightmapsBakeMode: 1
- m_TextureCompression: 1
- m_FinalGather: 0
- m_FinalGatherFiltering: 1
- m_FinalGatherRayCount: 256
- m_ReflectionCompression: 2
- m_MixedBakeMode: 2
- m_BakeBackend: 0
- m_PVRSampling: 1
- m_PVRDirectSampleCount: 32
- m_PVRSampleCount: 500
- m_PVRBounces: 2
- m_PVREnvironmentSampleCount: 500
- m_PVREnvironmentReferencePointCount: 2048
- m_PVRFilteringMode: 2
- m_PVRDenoiserTypeDirect: 0
- m_PVRDenoiserTypeIndirect: 0
- m_PVRDenoiserTypeAO: 0
- m_PVRFilterTypeDirect: 0
- m_PVRFilterTypeIndirect: 0
- m_PVRFilterTypeAO: 0
- m_PVREnvironmentMIS: 0
- m_PVRCulling: 1
- m_PVRFilteringGaussRadiusDirect: 1
- m_PVRFilteringGaussRadiusIndirect: 5
- m_PVRFilteringGaussRadiusAO: 2
- m_PVRFilteringAtrousPositionSigmaDirect: 0.5
- m_PVRFilteringAtrousPositionSigmaIndirect: 2
- m_PVRFilteringAtrousPositionSigmaAO: 1
- m_ExportTrainingData: 0
- m_TrainingDataDestination: TrainingData
- m_LightProbeSampleCountMultiplier: 4
- m_LightingDataAsset: {fileID: 0}
- m_LightingSettings: {fileID: 4890085278179872738, guid: bb1808757e1b24647ac72e9691d1d79a, type: 2}
---- !u!196 &4
-NavMeshSettings:
- serializedVersion: 2
- m_ObjectHideFlags: 0
- m_BuildSettings:
- serializedVersion: 2
- agentTypeID: 0
- agentRadius: 0.5
- agentHeight: 2
- agentSlope: 45
- agentClimb: 0.4
- ledgeDropHeight: 0
- maxJumpAcrossDistance: 0
- minRegionArea: 2
- manualCellSize: 0
- cellSize: 0.16666667
- manualTileSize: 0
- tileSize: 256
- accuratePlacement: 0
- maxJobWorkers: 0
- preserveTilesOutsideBounds: 0
- debug:
- m_Flags: 0
- m_NavMeshData: {fileID: 0}
---- !u!1 &28128103
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 28128104}
- - component: {fileID: 28128107}
- - component: {fileID: 28128106}
- - component: {fileID: 28128105}
- m_Layer: 5
- m_Name: Scroll View
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &28128104
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 28128103}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 2047971057}
- - {fileID: 141452593}
- - {fileID: 872295795}
- m_Father: {fileID: 32743789}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 200}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &28128105
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 28128103}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Content: {fileID: 1470195407}
- m_Horizontal: 1
- m_Vertical: 1
- m_MovementType: 1
- m_Elasticity: 0.1
- m_Inertia: 1
- m_DecelerationRate: 0.135
- m_ScrollSensitivity: 1
- m_Viewport: {fileID: 2047971057}
- m_HorizontalScrollbar: {fileID: 141452594}
- m_VerticalScrollbar: {fileID: 872295796}
- m_HorizontalScrollbarVisibility: 2
- m_VerticalScrollbarVisibility: 2
- m_HorizontalScrollbarSpacing: -3
- m_VerticalScrollbarSpacing: -3
- m_OnValueChanged:
- m_PersistentCalls:
- m_Calls: []
---- !u!114 &28128106
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 28128103}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &28128107
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 28128103}
- m_CullTransparentMesh: 1
---- !u!1 &32743788
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 32743789}
- - component: {fileID: 32743791}
- - component: {fileID: 32743790}
- m_Layer: 5
- m_Name: OutputWrapper
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &32743789
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 32743788}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 28128104}
- m_Father: {fileID: 1227009913}
- m_RootOrder: 2
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &32743790
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 32743788}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: -1
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: 200
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!114 &32743791
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 32743788}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Padding:
- m_Left: 0
- m_Right: 0
- m_Top: 0
- m_Bottom: 0
- m_ChildAlignment: 3
- m_Spacing: 0
- m_ChildForceExpandWidth: 1
- m_ChildForceExpandHeight: 0
- m_ChildControlWidth: 1
- m_ChildControlHeight: 0
- m_ChildScaleWidth: 0
- m_ChildScaleHeight: 0
- m_ReverseArrangement: 0
---- !u!1 &66309837
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 66309838}
- - component: {fileID: 66309840}
- - component: {fileID: 66309839}
- m_Layer: 5
- m_Name: Handle
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &66309838
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 66309837}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 262428470}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 20, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &66309839
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 66309837}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &66309840
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 66309837}
- m_CullTransparentMesh: 1
---- !u!1 &74564901
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 74564902}
- - component: {fileID: 74564904}
- - component: {fileID: 74564903}
- m_Layer: 5
- m_Name: Text (Legacy)
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &74564902
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 74564901}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 535188326}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &74564903
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 74564901}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0.2784314, g: 0.2784314, b: 0.2784314, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 4
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: Link Wallet
---- !u!222 &74564904
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 74564901}
- m_CullTransparentMesh: 1
---- !u!1 &81104208
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 81104209}
- - component: {fileID: 81104212}
- - component: {fileID: 81104211}
- - component: {fileID: 81104210}
- m_Layer: 5
- m_Name: Label
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &81104209
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 81104208}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 1586729517}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 200, y: 60}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &81104210
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 81104208}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: -1
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: 60
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!114 &81104211
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 81104208}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: 'Nonce:'
---- !u!222 &81104212
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 81104208}
- m_CullTransparentMesh: 1
---- !u!1 &133796356
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 133796357}
- - component: {fileID: 133796361}
- - component: {fileID: 133796360}
- - component: {fileID: 133796359}
- - component: {fileID: 133796358}
- m_Layer: 5
- m_Name: NonceInput
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &133796357
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 133796356}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 1444708119}
- - {fileID: 1665612662}
- m_Father: {fileID: 1586729517}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 500, y: 60}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &133796358
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 133796356}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: 200
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: 60
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!114 &133796359
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 133796356}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Navigation:
- m_Mode: 3
- m_WrapAround: 0
- m_SelectOnUp: {fileID: 0}
- m_SelectOnDown: {fileID: 0}
- m_SelectOnLeft: {fileID: 0}
- m_SelectOnRight: {fileID: 0}
- m_Transition: 1
- m_Colors:
- m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
- m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
- m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
- m_ColorMultiplier: 1
- m_FadeDuration: 0.1
- m_SpriteState:
- m_HighlightedSprite: {fileID: 0}
- m_PressedSprite: {fileID: 0}
- m_SelectedSprite: {fileID: 0}
- m_DisabledSprite: {fileID: 0}
- m_AnimationTriggers:
- m_NormalTrigger: Normal
- m_HighlightedTrigger: Highlighted
- m_PressedTrigger: Pressed
- m_SelectedTrigger: Selected
- m_DisabledTrigger: Disabled
- m_Interactable: 1
- m_TargetGraphic: {fileID: 133796360}
- m_TextComponent: {fileID: 1665612663}
- m_Placeholder: {fileID: 1444708120}
- m_ContentType: 0
- m_InputType: 0
- m_AsteriskChar: 42
- m_KeyboardType: 0
- m_LineType: 0
- m_HideMobileInput: 0
- m_CharacterValidation: 0
- m_CharacterLimit: 0
- m_OnSubmit:
- m_PersistentCalls:
- m_Calls: []
- m_OnDidEndEdit:
- m_PersistentCalls:
- m_Calls: []
- m_OnValueChanged:
- m_PersistentCalls:
- m_Calls: []
- m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
- m_CustomCaretColor: 0
- m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412}
- m_Text:
- m_CaretBlinkRate: 0.85
- m_CaretWidth: 1
- m_ReadOnly: 0
- m_ShouldActivateOnSelect: 1
---- !u!114 &133796360
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 133796356}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &133796361
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 133796356}
- m_CullTransparentMesh: 1
---- !u!1 &141452592
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 141452593}
- - component: {fileID: 141452596}
- - component: {fileID: 141452595}
- - component: {fileID: 141452594}
- m_Layer: 5
- m_Name: Scrollbar Horizontal
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &141452593
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 141452592}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 262428470}
- m_Father: {fileID: 28128104}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 20}
- m_Pivot: {x: 0, y: 0}
---- !u!114 &141452594
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 141452592}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Navigation:
- m_Mode: 3
- m_WrapAround: 0
- m_SelectOnUp: {fileID: 0}
- m_SelectOnDown: {fileID: 0}
- m_SelectOnLeft: {fileID: 0}
- m_SelectOnRight: {fileID: 0}
- m_Transition: 1
- m_Colors:
- m_NormalColor: {r: 0.87058824, g: 0.87058824, b: 0.87058824, a: 1}
- m_HighlightedColor: {r: 0.87058824, g: 0.87058824, b: 0.87058824, a: 1}
- m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
- m_SelectedColor: {r: 0.87058824, g: 0.87058824, b: 0.87058824, a: 1}
- m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
- m_ColorMultiplier: 1
- m_FadeDuration: 0.1
- m_SpriteState:
- m_HighlightedSprite: {fileID: 0}
- m_PressedSprite: {fileID: 0}
- m_SelectedSprite: {fileID: 0}
- m_DisabledSprite: {fileID: 0}
- m_AnimationTriggers:
- m_NormalTrigger: Normal
- m_HighlightedTrigger: Highlighted
- m_PressedTrigger: Pressed
- m_SelectedTrigger: Selected
- m_DisabledTrigger: Disabled
- m_Interactable: 1
- m_TargetGraphic: {fileID: 66309839}
- m_HandleRect: {fileID: 66309838}
- m_Direction: 0
- m_Value: 0
- m_Size: 1
- m_NumberOfSteps: 0
- m_OnValueChanged:
- m_PersistentCalls:
- m_Calls: []
---- !u!114 &141452595
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 141452592}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &141452596
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 141452592}
- m_CullTransparentMesh: 1
---- !u!1 &167191488
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 167191489}
- - component: {fileID: 167191492}
- - component: {fileID: 167191491}
- - component: {fileID: 167191490}
- m_Layer: 5
- m_Name: CancelButton
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &167191489
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 167191488}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 552980002}
- m_Father: {fileID: 1193726684}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 320, y: 60}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &167191490
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 167191488}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Navigation:
- m_Mode: 3
- m_WrapAround: 0
- m_SelectOnUp: {fileID: 0}
- m_SelectOnDown: {fileID: 0}
- m_SelectOnLeft: {fileID: 0}
- m_SelectOnRight: {fileID: 0}
- m_Transition: 1
- m_Colors:
- m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
- m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
- m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
- m_ColorMultiplier: 1
- m_FadeDuration: 0.1
- m_SpriteState:
- m_HighlightedSprite: {fileID: 0}
- m_PressedSprite: {fileID: 0}
- m_SelectedSprite: {fileID: 0}
- m_DisabledSprite: {fileID: 0}
- m_AnimationTriggers:
- m_NormalTrigger: Normal
- m_HighlightedTrigger: Highlighted
- m_PressedTrigger: Pressed
- m_SelectedTrigger: Selected
- m_DisabledTrigger: Disabled
- m_Interactable: 1
- m_TargetGraphic: {fileID: 167191491}
- m_OnClick:
- m_PersistentCalls:
- m_Calls:
- - m_Target: {fileID: 1192763474}
- m_TargetAssemblyTypeName: LinkWalletScript, Assembly-CSharp
- m_MethodName: Cancel
- m_Mode: 1
- m_Arguments:
- m_ObjectArgument: {fileID: 0}
- m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
- m_IntArgument: 0
- m_FloatArgument: 0
- m_StringArgument:
- m_BoolArgument: 0
- m_CallState: 2
---- !u!114 &167191491
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 167191488}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &167191492
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 167191488}
- m_CullTransparentMesh: 1
---- !u!1 &190859329
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 190859330}
- - component: {fileID: 190859333}
- - component: {fileID: 190859332}
- - component: {fileID: 190859331}
- m_Layer: 5
- m_Name: Scrollbar
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &190859330
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 190859329}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 713747429}
- m_Father: {fileID: 1972798970}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 1, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 20, y: 0}
- m_Pivot: {x: 1, y: 1}
---- !u!114 &190859331
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 190859329}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Navigation:
- m_Mode: 3
- m_WrapAround: 0
- m_SelectOnUp: {fileID: 0}
- m_SelectOnDown: {fileID: 0}
- m_SelectOnLeft: {fileID: 0}
- m_SelectOnRight: {fileID: 0}
- m_Transition: 1
- m_Colors:
- m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
- m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
- m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
- m_ColorMultiplier: 1
- m_FadeDuration: 0.1
- m_SpriteState:
- m_HighlightedSprite: {fileID: 0}
- m_PressedSprite: {fileID: 0}
- m_SelectedSprite: {fileID: 0}
- m_DisabledSprite: {fileID: 0}
- m_AnimationTriggers:
- m_NormalTrigger: Normal
- m_HighlightedTrigger: Highlighted
- m_PressedTrigger: Pressed
- m_SelectedTrigger: Selected
- m_DisabledTrigger: Disabled
- m_Interactable: 1
- m_TargetGraphic: {fileID: 1617055628}
- m_HandleRect: {fileID: 1617055627}
- m_Direction: 2
- m_Value: 0
- m_Size: 1
- m_NumberOfSteps: 0
- m_OnValueChanged:
- m_PersistentCalls:
- m_Calls: []
---- !u!114 &190859332
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 190859329}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &190859333
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 190859329}
- m_CullTransparentMesh: 1
---- !u!1 &196061253
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 196061254}
- - component: {fileID: 196061256}
- - component: {fileID: 196061255}
- m_Layer: 5
- m_Name: Label
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &196061254
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 196061253}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 948340004}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: -32, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &196061255
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 196061253}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: Sandbox
---- !u!222 &196061256
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 196061253}
- m_CullTransparentMesh: 1
---- !u!1 &224774743
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 224774744}
- - component: {fileID: 224774746}
- - component: {fileID: 224774745}
- m_Layer: 5
- m_Name: Item Checkmark
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &224774744
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 224774743}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 2045159901}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0.5}
- m_AnchorMax: {x: 0, y: 0.5}
- m_AnchoredPosition: {x: 20, y: 0}
- m_SizeDelta: {x: 30, y: 30}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &224774745
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 224774743}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 10901, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 0
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &224774746
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 224774743}
- m_CullTransparentMesh: 1
---- !u!1 &262428469
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 262428470}
- m_Layer: 5
- m_Name: Sliding Area
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &262428470
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 262428469}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 66309838}
- m_Father: {fileID: 141452593}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: -20, y: -20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &519420028
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 519420032}
- - component: {fileID: 519420031}
- - component: {fileID: 519420029}
- m_Layer: 0
- m_Name: Main Camera
- m_TagString: MainCamera
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!81 &519420029
-AudioListener:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 519420028}
- m_Enabled: 1
---- !u!20 &519420031
-Camera:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 519420028}
- m_Enabled: 1
- serializedVersion: 2
- m_ClearFlags: 2
- m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0}
- m_projectionMatrixMode: 1
- m_GateFitMode: 2
- m_FOVAxisMode: 0
- m_SensorSize: {x: 36, y: 24}
- m_LensShift: {x: 0, y: 0}
- m_FocalLength: 50
- m_NormalizedViewPortRect:
- serializedVersion: 2
- x: 0
- y: 0
- width: 1
- height: 1
- near clip plane: 0.3
- far clip plane: 1000
- field of view: 60
- orthographic: 1
- orthographic size: 5
- m_Depth: -1
- m_CullingMask:
- serializedVersion: 2
- m_Bits: 4294967295
- m_RenderingPath: -1
- m_TargetTexture: {fileID: 0}
- m_TargetDisplay: 0
- m_TargetEye: 0
- m_HDR: 1
- m_AllowMSAA: 0
- m_AllowDynamicResolution: 0
- m_ForceIntoRT: 0
- m_OcclusionCulling: 0
- m_StereoConvergence: 10
- m_StereoSeparation: 0.022
---- !u!4 &519420032
-Transform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 519420028}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: -10}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 0}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
---- !u!1 &535188325
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 535188326}
- - component: {fileID: 535188329}
- - component: {fileID: 535188328}
- - component: {fileID: 535188327}
- m_Layer: 5
- m_Name: LinkButton
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &535188326
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 535188325}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 74564902}
- m_Father: {fileID: 1193726684}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 320, y: 60}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &535188327
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 535188325}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Navigation:
- m_Mode: 3
- m_WrapAround: 0
- m_SelectOnUp: {fileID: 0}
- m_SelectOnDown: {fileID: 0}
- m_SelectOnLeft: {fileID: 0}
- m_SelectOnRight: {fileID: 0}
- m_Transition: 1
- m_Colors:
- m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
- m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
- m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
- m_ColorMultiplier: 1
- m_FadeDuration: 0.1
- m_SpriteState:
- m_HighlightedSprite: {fileID: 0}
- m_PressedSprite: {fileID: 0}
- m_SelectedSprite: {fileID: 0}
- m_DisabledSprite: {fileID: 0}
- m_AnimationTriggers:
- m_NormalTrigger: Normal
- m_HighlightedTrigger: Highlighted
- m_PressedTrigger: Pressed
- m_SelectedTrigger: Selected
- m_DisabledTrigger: Disabled
- m_Interactable: 1
- m_TargetGraphic: {fileID: 535188328}
- m_OnClick:
- m_PersistentCalls:
- m_Calls:
- - m_Target: {fileID: 1192763474}
- m_TargetAssemblyTypeName: LinkWalletScript, Assembly-CSharp
- m_MethodName: LinkWallet
- m_Mode: 1
- m_Arguments:
- m_ObjectArgument: {fileID: 0}
- m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
- m_IntArgument: 0
- m_FloatArgument: 0
- m_StringArgument:
- m_BoolArgument: 0
- m_CallState: 2
---- !u!114 &535188328
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 535188325}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &535188329
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 535188325}
- m_CullTransparentMesh: 1
---- !u!1 &552980001
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 552980002}
- - component: {fileID: 552980004}
- - component: {fileID: 552980003}
- m_Layer: 5
- m_Name: Text (Legacy)
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &552980002
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 552980001}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 167191489}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &552980003
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 552980001}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 4
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: Cancel
---- !u!222 &552980004
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 552980001}
- m_CullTransparentMesh: 1
---- !u!1 &617968205
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 617968206}
- - component: {fileID: 617968207}
- m_Layer: 5
- m_Name: Fields
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &617968206
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 617968205}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 1408260093}
- - {fileID: 871878637}
- - {fileID: 1200618890196691547}
- - {fileID: 1200618890196121947}
- - {fileID: 1200618888469994626}
- - {fileID: 1586729517}
- m_Father: {fileID: 831814473}
- m_RootOrder: 2
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &617968207
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 617968205}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 558b109da67a27b4686138b955f3a7e8, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Padding:
- m_Left: 0
- m_Right: 0
- m_Top: 0
- m_Bottom: 0
- m_ChildAlignment: 0
- SpacingX: 16
- SpacingY: 16
- ExpandHorizontalSpacing: 0
- ChildForceExpandWidth: 0
- ChildForceExpandHeight: 0
- invertOrder: 0
- m_StartAxis: 0
---- !u!1 &713747428
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 713747429}
- m_Layer: 5
- m_Name: Sliding Area
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &713747429
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 713747428}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 1617055627}
- m_Father: {fileID: 190859330}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: -20, y: -20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &754693635
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 754693636}
- - component: {fileID: 754693638}
- - component: {fileID: 754693637}
- m_Layer: 5
- m_Name: Text (Legacy)
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &754693636
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 754693635}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 1946148956}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: -0.5}
- m_SizeDelta: {x: -20, y: -13}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &754693637
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 754693635}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 0
- m_HorizontalOverflow: 1
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text:
---- !u!222 &754693638
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 754693635}
- m_CullTransparentMesh: 1
---- !u!1 &831814472
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 831814473}
- - component: {fileID: 831814477}
- - component: {fileID: 831814476}
- - component: {fileID: 831814475}
- - component: {fileID: 831814478}
- m_Layer: 5
- m_Name: Canvas
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &831814473
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 831814472}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 2125223058}
- - {fileID: 1128672538}
- - {fileID: 617968206}
- - {fileID: 1193726684}
- m_Father: {fileID: 1227009913}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &831814475
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 831814472}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreReversedGraphics: 1
- m_BlockingObjects: 0
- m_BlockingMask:
- serializedVersion: 2
- m_Bits: 4294967295
---- !u!114 &831814476
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 831814472}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_UiScaleMode: 0
- m_ReferencePixelsPerUnit: 100
- m_ScaleFactor: 1
- m_ReferenceResolution: {x: 800, y: 600}
- m_ScreenMatchMode: 0
- m_MatchWidthOrHeight: 0
- m_PhysicalUnit: 3
- m_FallbackScreenDPI: 96
- m_DefaultSpriteDPI: 96
- m_DynamicPixelsPerUnit: 1
- m_PresetInfoIsWorld: 0
---- !u!223 &831814477
-Canvas:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 831814472}
- m_Enabled: 1
- serializedVersion: 3
- m_RenderMode: 0
- m_Camera: {fileID: 0}
- m_PlaneDistance: 100
- m_PixelPerfect: 0
- m_ReceivesEvents: 1
- m_OverrideSorting: 0
- m_OverridePixelPerfect: 0
- m_SortingBucketNormalizedSize: 0
- m_AdditionalShaderChannelsFlag: 0
- m_SortingLayerID: 0
- m_SortingOrder: 0
- m_TargetDisplay: 0
---- !u!114 &831814478
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 831814472}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Padding:
- m_Left: 0
- m_Right: 0
- m_Top: 0
- m_Bottom: 0
- m_ChildAlignment: 3
- m_Spacing: 20
- m_ChildForceExpandWidth: 1
- m_ChildForceExpandHeight: 0
- m_ChildControlWidth: 1
- m_ChildControlHeight: 1
- m_ChildScaleWidth: 0
- m_ChildScaleHeight: 0
- m_ReverseArrangement: 0
---- !u!1 &871878636
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 871878637}
- - component: {fileID: 871878639}
- - component: {fileID: 871878638}
- m_Layer: 0
- m_Name: AccessToken
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &871878637
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 871878636}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 1120739865}
- - {fileID: 1946148956}
- m_Father: {fileID: 617968206}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &871878638
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 871878636}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: -1
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: 80
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!114 &871878639
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 871878636}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Padding:
- m_Left: 0
- m_Right: 0
- m_Top: 0
- m_Bottom: 0
- m_ChildAlignment: 3
- m_Spacing: 16
- m_ChildForceExpandWidth: 0
- m_ChildForceExpandHeight: 0
- m_ChildControlWidth: 0
- m_ChildControlHeight: 0
- m_ChildScaleWidth: 1
- m_ChildScaleHeight: 1
- m_ReverseArrangement: 0
---- !u!1 &872295794
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 872295795}
- - component: {fileID: 872295798}
- - component: {fileID: 872295797}
- - component: {fileID: 872295796}
- m_Layer: 5
- m_Name: Scrollbar Vertical
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &872295795
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 872295794}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 1870468640}
- m_Father: {fileID: 28128104}
- m_RootOrder: 2
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 1, y: 0}
- m_AnchorMax: {x: 1, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 20, y: 0}
- m_Pivot: {x: 1, y: 1}
---- !u!114 &872295796
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 872295794}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Navigation:
- m_Mode: 3
- m_WrapAround: 0
- m_SelectOnUp: {fileID: 0}
- m_SelectOnDown: {fileID: 0}
- m_SelectOnLeft: {fileID: 0}
- m_SelectOnRight: {fileID: 0}
- m_Transition: 1
- m_Colors:
- m_NormalColor: {r: 0.8679245, g: 0.8679245, b: 0.8679245, a: 1}
- m_HighlightedColor: {r: 0.87058824, g: 0.87058824, b: 0.87058824, a: 1}
- m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
- m_SelectedColor: {r: 0.87058824, g: 0.87058824, b: 0.87058824, a: 1}
- m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
- m_ColorMultiplier: 1
- m_FadeDuration: 0.1
- m_SpriteState:
- m_HighlightedSprite: {fileID: 0}
- m_PressedSprite: {fileID: 0}
- m_SelectedSprite: {fileID: 0}
- m_DisabledSprite: {fileID: 0}
- m_AnimationTriggers:
- m_NormalTrigger: Normal
- m_HighlightedTrigger: Highlighted
- m_PressedTrigger: Pressed
- m_SelectedTrigger: Selected
- m_DisabledTrigger: Disabled
- m_Interactable: 1
- m_TargetGraphic: {fileID: 1741513414}
- m_HandleRect: {fileID: 1741513413}
- m_Direction: 2
- m_Value: 1
- m_Size: 0.99999994
- m_NumberOfSteps: 0
- m_OnValueChanged:
- m_PersistentCalls:
- m_Calls: []
---- !u!114 &872295797
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 872295794}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &872295798
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 872295794}
- m_CullTransparentMesh: 1
---- !u!1 &948340003
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 948340004}
- - component: {fileID: 948340007}
- - component: {fileID: 948340006}
- - component: {fileID: 948340005}
- m_Layer: 5
- m_Name: Environment
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &948340004
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 948340003}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 196061254}
- - {fileID: 963803871}
- - {fileID: 1972798970}
- m_Father: {fileID: 1408260093}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 500, y: 60}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &948340005
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 948340003}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 0d0b652f32a2cc243917e4028fa0f046, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Navigation:
- m_Mode: 3
- m_WrapAround: 0
- m_SelectOnUp: {fileID: 0}
- m_SelectOnDown: {fileID: 0}
- m_SelectOnLeft: {fileID: 0}
- m_SelectOnRight: {fileID: 0}
- m_Transition: 1
- m_Colors:
- m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
- m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
- m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
- m_ColorMultiplier: 1
- m_FadeDuration: 0.1
- m_SpriteState:
- m_HighlightedSprite: {fileID: 0}
- m_PressedSprite: {fileID: 0}
- m_SelectedSprite: {fileID: 0}
- m_DisabledSprite: {fileID: 0}
- m_AnimationTriggers:
- m_NormalTrigger: Normal
- m_HighlightedTrigger: Highlighted
- m_PressedTrigger: Pressed
- m_SelectedTrigger: Selected
- m_DisabledTrigger: Disabled
- m_Interactable: 1
- m_TargetGraphic: {fileID: 948340006}
- m_Template: {fileID: 1972798970}
- m_CaptionText: {fileID: 196061255}
- m_CaptionImage: {fileID: 0}
- m_ItemText: {fileID: 2131346469}
- m_ItemImage: {fileID: 0}
- m_Value: 1
- m_Options:
- m_Options:
- - m_Text: Production
- m_Image: {fileID: 0}
- - m_Text: Sandbox
- m_Image: {fileID: 0}
- - m_Text: Development
- m_Image: {fileID: 0}
- m_OnValueChanged:
- m_PersistentCalls:
- m_Calls: []
- m_AlphaFadeSpeed: 0.15
---- !u!114 &948340006
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 948340003}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &948340007
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 948340003}
- m_CullTransparentMesh: 1
---- !u!1 &963803870
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 963803871}
- - component: {fileID: 963803873}
- - component: {fileID: 963803872}
- m_Layer: 5
- m_Name: Arrow
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &963803871
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 963803870}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 948340004}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 1, y: 0.5}
- m_AnchorMax: {x: 1, y: 0.5}
- m_AnchoredPosition: {x: -15, y: 0}
- m_SizeDelta: {x: 20, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &963803872
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 963803870}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 10915, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 0
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &963803873
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 963803870}
- m_CullTransparentMesh: 1
---- !u!1 &989112235
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 989112236}
- - component: {fileID: 989112237}
- m_Layer: 5
- m_Name: Spacer
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &989112236
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 989112235}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 1227009913}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &989112237
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 989112235}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: -1
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: -1
- m_FlexibleWidth: -1
- m_FlexibleHeight: 1
- m_LayoutPriority: 1
---- !u!1 &1120739864
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1120739865}
- - component: {fileID: 1120739868}
- - component: {fileID: 1120739867}
- - component: {fileID: 1120739866}
- m_Layer: 5
- m_Name: Label
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1120739865
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1120739864}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 871878637}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 200, y: 60}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1120739866
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1120739864}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: -1
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: 60
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!114 &1120739867
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1120739864}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: 'Access token:'
---- !u!222 &1120739868
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1120739864}
- m_CullTransparentMesh: 1
---- !u!1 &1128672537
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1128672538}
- - component: {fileID: 1128672541}
- - component: {fileID: 1128672540}
- - component: {fileID: 1128672539}
- m_Layer: 5
- m_Name: Description
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1128672538
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1128672537}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 831814473}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 1111.8661, y: 0}
- m_SizeDelta: {x: 2223.7322, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1128672539
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1128672537}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_HorizontalFit: 0
- m_VerticalFit: 2
---- !u!114 &1128672540
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1128672537}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: Link an external EOA wallet to an Immutable Passport account by providing
- an EIP-712 signature.
---- !u!222 &1128672541
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1128672537}
- m_CullTransparentMesh: 1
---- !u!1 &1192763471
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1192763473}
- - component: {fileID: 1192763474}
- m_Layer: 0
- m_Name: Script
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!4 &1192763473
-Transform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1192763471}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 326.73624, y: 181.70598, z: -2.506466}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 0}
- m_RootOrder: 2
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
---- !u!114 &1192763474
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1192763471}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: e8fdf73edf3f49079fcf50eeb72b816f, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- Output: {fileID: 1253661940}
- EnvironmentDropdown: {fileID: 948340005}
- AccessTokenInput: {fileID: 1946148958}
- TypeInput: {fileID: 1142338628823642223}
- WalletAddressInput: {fileID: 1142338628822901615}
- SignatureInput: {fileID: 1142338629240194742}
- NonceInput: {fileID: 133796359}
---- !u!1 &1193726683
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1193726684}
- - component: {fileID: 1193726685}
- m_Layer: 5
- m_Name: Buttons
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1193726684
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1193726683}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 535188326}
- - {fileID: 167191489}
- m_Father: {fileID: 831814473}
- m_RootOrder: 3
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1193726685
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1193726683}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Padding:
- m_Left: 0
- m_Right: 0
- m_Top: 0
- m_Bottom: 0
- m_ChildAlignment: 0
- m_Spacing: 16
- m_ChildForceExpandWidth: 0
- m_ChildForceExpandHeight: 0
- m_ChildControlWidth: 0
- m_ChildControlHeight: 0
- m_ChildScaleWidth: 0
- m_ChildScaleHeight: 0
- m_ReverseArrangement: 0
---- !u!1 &1224692255
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1224692256}
- m_Layer: 5
- m_Name: Content
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1224692256
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1224692255}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 2045159901}
- m_Father: {fileID: 1810570790}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 1}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 60}
- m_Pivot: {x: 0.5, y: 1}
---- !u!1 &1227009912
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1227009913}
- - component: {fileID: 1227009914}
- - component: {fileID: 1227009915}
- m_Layer: 5
- m_Name: Content
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1227009913
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1227009912}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 831814473}
- - {fileID: 989112236}
- - {fileID: 32743789}
- m_Father: {fileID: 1850628784}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1227009914
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1227009912}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 3eff14abe3dbe4539982d7c5e20b0a58, type: 3}
- m_Name:
- m_EditorClassIdentifier:
---- !u!114 &1227009915
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1227009912}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Padding:
- m_Left: 20
- m_Right: 20
- m_Top: 20
- m_Bottom: 20
- m_ChildAlignment: 0
- m_Spacing: 20
- m_ChildForceExpandWidth: 1
- m_ChildForceExpandHeight: 0
- m_ChildControlWidth: 1
- m_ChildControlHeight: 1
- m_ChildScaleWidth: 0
- m_ChildScaleHeight: 0
- m_ReverseArrangement: 0
---- !u!1 &1253661938
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1253661939}
- - component: {fileID: 1253661941}
- - component: {fileID: 1253661940}
- m_Layer: 5
- m_Name: Output
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1253661939
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1253661938}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 1470195407}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: -32, y: -32}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1253661940
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1253661938}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 20
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 1
- m_MaxSize: 40
- m_Alignment: 0
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text:
---- !u!222 &1253661941
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1253661938}
- m_CullTransparentMesh: 1
---- !u!1 &1260077984
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1260077987}
- - component: {fileID: 1260077986}
- - component: {fileID: 1260077985}
- m_Layer: 0
- m_Name: EventSystem
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!114 &1260077985
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1260077984}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_SendPointerHoverToParent: 1
- m_HorizontalAxis: Horizontal
- m_VerticalAxis: Vertical
- m_SubmitButton: Submit
- m_CancelButton: Cancel
- m_InputActionsPerSecond: 10
- m_RepeatDelay: 0.5
- m_ForceModuleActive: 0
---- !u!114 &1260077986
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1260077984}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_FirstSelected: {fileID: 0}
- m_sendNavigationEvents: 1
- m_DragThreshold: 10
---- !u!4 &1260077987
-Transform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1260077984}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 0}
- m_RootOrder: 3
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
---- !u!1 &1408260092
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1408260093}
- - component: {fileID: 1408260095}
- - component: {fileID: 1408260094}
- m_Layer: 0
- m_Name: Environment
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1408260093
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1408260092}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 2038331016}
- - {fileID: 948340004}
- m_Father: {fileID: 617968206}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1408260094
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1408260092}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: -1
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: 80
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!114 &1408260095
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1408260092}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Padding:
- m_Left: 0
- m_Right: 0
- m_Top: 0
- m_Bottom: 0
- m_ChildAlignment: 3
- m_Spacing: 16
- m_ChildForceExpandWidth: 0
- m_ChildForceExpandHeight: 0
- m_ChildControlWidth: 0
- m_ChildControlHeight: 0
- m_ChildScaleWidth: 1
- m_ChildScaleHeight: 1
- m_ReverseArrangement: 0
---- !u!1 &1444708118
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1444708119}
- - component: {fileID: 1444708121}
- - component: {fileID: 1444708120}
- m_Layer: 5
- m_Name: Placeholder
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1444708119
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1444708118}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 133796357}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: -0.5}
- m_SizeDelta: {x: -20, y: -13}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1444708120
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1444708118}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 2
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text:
---- !u!222 &1444708121
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1444708118}
- m_CullTransparentMesh: 1
---- !u!1 &1470195406
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1470195407}
- m_Layer: 5
- m_Name: Content
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1470195407
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1470195406}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 1253661939}
- m_Father: {fileID: 2047971057}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: -0.000030040741, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &1586729516
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1586729517}
- - component: {fileID: 1586729519}
- - component: {fileID: 1586729518}
- m_Layer: 0
- m_Name: Nonce
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1586729517
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1586729516}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 81104209}
- - {fileID: 133796357}
- m_Father: {fileID: 617968206}
- m_RootOrder: 5
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1586729518
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1586729516}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: -1
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: 80
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!114 &1586729519
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1586729516}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Padding:
- m_Left: 0
- m_Right: 0
- m_Top: 0
- m_Bottom: 0
- m_ChildAlignment: 3
- m_Spacing: 16
- m_ChildForceExpandWidth: 0
- m_ChildForceExpandHeight: 0
- m_ChildControlWidth: 0
- m_ChildControlHeight: 0
- m_ChildScaleWidth: 1
- m_ChildScaleHeight: 1
- m_ReverseArrangement: 0
---- !u!1 &1617055626
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1617055627}
- - component: {fileID: 1617055629}
- - component: {fileID: 1617055628}
- m_Layer: 5
- m_Name: Handle
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1617055627
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1617055626}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 713747429}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 20, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1617055628
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1617055626}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &1617055629
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1617055626}
- m_CullTransparentMesh: 1
---- !u!1 &1665612661
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1665612662}
- - component: {fileID: 1665612664}
- - component: {fileID: 1665612663}
- m_Layer: 5
- m_Name: Text (Legacy)
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1665612662
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1665612661}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 133796357}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: -0.5}
- m_SizeDelta: {x: -20, y: -13}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1665612663
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1665612661}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 0
- m_HorizontalOverflow: 1
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text:
---- !u!222 &1665612664
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1665612661}
- m_CullTransparentMesh: 1
---- !u!1 &1741513412
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1741513413}
- - component: {fileID: 1741513415}
- - component: {fileID: 1741513414}
- m_Layer: 5
- m_Name: Handle
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1741513413
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1741513412}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 1870468640}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 20, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1741513414
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1741513412}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &1741513415
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1741513412}
- m_CullTransparentMesh: 1
---- !u!1 &1810570789
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1810570790}
- - component: {fileID: 1810570793}
- - component: {fileID: 1810570792}
- - component: {fileID: 1810570791}
- m_Layer: 5
- m_Name: Viewport
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1810570790
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1810570789}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 1224692256}
- m_Father: {fileID: 1972798970}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: -17, y: 0}
- m_Pivot: {x: 0, y: 1}
---- !u!114 &1810570791
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1810570789}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_ShowMaskGraphic: 0
---- !u!114 &1810570792
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1810570789}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 10917, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &1810570793
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1810570789}
- m_CullTransparentMesh: 1
---- !u!1 &1850628783
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1850628784}
- - component: {fileID: 1850628787}
- - component: {fileID: 1850628786}
- - component: {fileID: 1850628785}
- - component: {fileID: 1850628788}
- - component: {fileID: 1850628790}
- - component: {fileID: 1850628789}
- m_Layer: 5
- m_Name: Canvas
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1850628784
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1850628783}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 0, y: 0, z: 0}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 1227009913}
- m_Father: {fileID: 0}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0, y: 0}
---- !u!114 &1850628785
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1850628783}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreReversedGraphics: 1
- m_BlockingObjects: 0
- m_BlockingMask:
- serializedVersion: 2
- m_Bits: 4294967295
---- !u!114 &1850628786
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1850628783}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_UiScaleMode: 1
- m_ReferencePixelsPerUnit: 100
- m_ScaleFactor: 1
- m_ReferenceResolution: {x: 1600, y: 1200}
- m_ScreenMatchMode: 0
- m_MatchWidthOrHeight: 0.5
- m_PhysicalUnit: 3
- m_FallbackScreenDPI: 96
- m_DefaultSpriteDPI: 96
- m_DynamicPixelsPerUnit: 1
- m_PresetInfoIsWorld: 0
---- !u!223 &1850628787
-Canvas:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1850628783}
- m_Enabled: 1
- serializedVersion: 3
- m_RenderMode: 0
- m_Camera: {fileID: 0}
- m_PlaneDistance: 100
- m_PixelPerfect: 0
- m_ReceivesEvents: 1
- m_OverrideSorting: 0
- m_OverridePixelPerfect: 0
- m_SortingBucketNormalizedSize: 0
- m_AdditionalShaderChannelsFlag: 0
- m_SortingLayerID: 0
- m_SortingOrder: 0
- m_TargetDisplay: 0
---- !u!114 &1850628788
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1850628783}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_HorizontalFit: 0
- m_VerticalFit: 0
---- !u!114 &1850628789
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1850628783}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0, g: 0, b: 0, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 0}
- m_Type: 0
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &1850628790
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1850628783}
- m_CullTransparentMesh: 1
---- !u!1 &1870468639
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1870468640}
- m_Layer: 5
- m_Name: Sliding Area
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1870468640
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1870468639}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 1741513413}
- m_Father: {fileID: 872295795}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: -20, y: -20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1884149204
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1884149205}
- - component: {fileID: 1884149207}
- - component: {fileID: 1884149206}
- m_Layer: 5
- m_Name: Item Background
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1884149205
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1884149204}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 2045159901}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1884149206
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1884149204}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 0}
- m_Type: 0
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &1884149207
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1884149204}
- m_CullTransparentMesh: 1
---- !u!1 &1946148955
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1946148956}
- - component: {fileID: 1946148960}
- - component: {fileID: 1946148959}
- - component: {fileID: 1946148958}
- - component: {fileID: 1946148957}
- m_Layer: 5
- m_Name: AccessTokenInput
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1946148956
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1946148955}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 2096781293}
- - {fileID: 754693636}
- m_Father: {fileID: 871878637}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 500, y: 60}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1946148957
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1946148955}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: 200
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: 60
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!114 &1946148958
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1946148955}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Navigation:
- m_Mode: 3
- m_WrapAround: 0
- m_SelectOnUp: {fileID: 0}
- m_SelectOnDown: {fileID: 0}
- m_SelectOnLeft: {fileID: 0}
- m_SelectOnRight: {fileID: 0}
- m_Transition: 1
- m_Colors:
- m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
- m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
- m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
- m_ColorMultiplier: 1
- m_FadeDuration: 0.1
- m_SpriteState:
- m_HighlightedSprite: {fileID: 0}
- m_PressedSprite: {fileID: 0}
- m_SelectedSprite: {fileID: 0}
- m_DisabledSprite: {fileID: 0}
- m_AnimationTriggers:
- m_NormalTrigger: Normal
- m_HighlightedTrigger: Highlighted
- m_PressedTrigger: Pressed
- m_SelectedTrigger: Selected
- m_DisabledTrigger: Disabled
- m_Interactable: 1
- m_TargetGraphic: {fileID: 1946148959}
- m_TextComponent: {fileID: 754693637}
- m_Placeholder: {fileID: 2096781294}
- m_ContentType: 0
- m_InputType: 0
- m_AsteriskChar: 42
- m_KeyboardType: 0
- m_LineType: 0
- m_HideMobileInput: 0
- m_CharacterValidation: 0
- m_CharacterLimit: 0
- m_OnSubmit:
- m_PersistentCalls:
- m_Calls: []
- m_OnDidEndEdit:
- m_PersistentCalls:
- m_Calls: []
- m_OnValueChanged:
- m_PersistentCalls:
- m_Calls: []
- m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
- m_CustomCaretColor: 0
- m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412}
- m_Text:
- m_CaretBlinkRate: 0.85
- m_CaretWidth: 1
- m_ReadOnly: 0
- m_ShouldActivateOnSelect: 1
---- !u!114 &1946148959
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1946148955}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &1946148960
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1946148955}
- m_CullTransparentMesh: 1
---- !u!1 &1972798969
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1972798970}
- - component: {fileID: 1972798973}
- - component: {fileID: 1972798972}
- - component: {fileID: 1972798971}
- m_Layer: 5
- m_Name: Template
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1972798970
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1972798969}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 1810570790}
- - {fileID: 190859330}
- m_Father: {fileID: 948340004}
- m_RootOrder: 2
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 0}
- m_AnchoredPosition: {x: 0, y: 2}
- m_SizeDelta: {x: 0, y: 150}
- m_Pivot: {x: 0.5, y: 1}
---- !u!114 &1972798971
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1972798969}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Content: {fileID: 1224692256}
- m_Horizontal: 0
- m_Vertical: 1
- m_MovementType: 2
- m_Elasticity: 0.1
- m_Inertia: 1
- m_DecelerationRate: 0.135
- m_ScrollSensitivity: 1
- m_Viewport: {fileID: 1810570790}
- m_HorizontalScrollbar: {fileID: 0}
- m_VerticalScrollbar: {fileID: 190859331}
- m_HorizontalScrollbarVisibility: 0
- m_VerticalScrollbarVisibility: 2
- m_HorizontalScrollbarSpacing: 0
- m_VerticalScrollbarSpacing: -3
- m_OnValueChanged:
- m_PersistentCalls:
- m_Calls: []
---- !u!114 &1972798972
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1972798969}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &1972798973
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1972798969}
- m_CullTransparentMesh: 1
---- !u!1 &2038331015
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 2038331016}
- - component: {fileID: 2038331019}
- - component: {fileID: 2038331018}
- - component: {fileID: 2038331017}
- m_Layer: 5
- m_Name: Label
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2038331016
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2038331015}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 1408260093}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 200, y: 60}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2038331017
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2038331015}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: -1
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: 60
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!114 &2038331018
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2038331015}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: 'Environment:'
---- !u!222 &2038331019
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2038331015}
- m_CullTransparentMesh: 1
---- !u!1 &2045159900
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 2045159901}
- - component: {fileID: 2045159902}
- m_Layer: 5
- m_Name: Item
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2045159901
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2045159900}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 1884149205}
- - {fileID: 224774744}
- - {fileID: 2131346468}
- m_Father: {fileID: 1224692256}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0.5}
- m_AnchorMax: {x: 1, y: 0.5}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 60}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2045159902
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2045159900}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Navigation:
- m_Mode: 3
- m_WrapAround: 0
- m_SelectOnUp: {fileID: 0}
- m_SelectOnDown: {fileID: 0}
- m_SelectOnLeft: {fileID: 0}
- m_SelectOnRight: {fileID: 0}
- m_Transition: 1
- m_Colors:
- m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
- m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
- m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
- m_ColorMultiplier: 1
- m_FadeDuration: 0.1
- m_SpriteState:
- m_HighlightedSprite: {fileID: 0}
- m_PressedSprite: {fileID: 0}
- m_SelectedSprite: {fileID: 0}
- m_DisabledSprite: {fileID: 0}
- m_AnimationTriggers:
- m_NormalTrigger: Normal
- m_HighlightedTrigger: Highlighted
- m_PressedTrigger: Pressed
- m_SelectedTrigger: Selected
- m_DisabledTrigger: Disabled
- m_Interactable: 1
- m_TargetGraphic: {fileID: 1884149206}
- toggleTransition: 1
- graphic: {fileID: 224774745}
- m_Group: {fileID: 0}
- onValueChanged:
- m_PersistentCalls:
- m_Calls: []
- m_IsOn: 1
---- !u!1 &2047971056
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 2047971057}
- - component: {fileID: 2047971060}
- - component: {fileID: 2047971059}
- - component: {fileID: 2047971058}
- m_Layer: 5
- m_Name: Viewport
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2047971057
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2047971056}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 1470195407}
- m_Father: {fileID: 28128104}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0, y: 1}
---- !u!114 &2047971058
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2047971056}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_ShowMaskGraphic: 0
---- !u!114 &2047971059
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2047971056}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &2047971060
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2047971056}
- m_CullTransparentMesh: 1
---- !u!1 &2096781292
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 2096781293}
- - component: {fileID: 2096781295}
- - component: {fileID: 2096781294}
- m_Layer: 5
- m_Name: Placeholder
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2096781293
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2096781292}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 1946148956}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: -0.5}
- m_SizeDelta: {x: -20, y: -13}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2096781294
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2096781292}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 2
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: Use Passport package GetAccessToken()
---- !u!222 &2096781295
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2096781292}
- m_CullTransparentMesh: 1
---- !u!1 &2125223057
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 2125223058}
- - component: {fileID: 2125223060}
- - component: {fileID: 2125223059}
- - component: {fileID: 2125223061}
- m_Layer: 5
- m_Name: Title
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2125223058
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2125223057}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 831814473}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 1111.8661, y: 0}
- m_SizeDelta: {x: 2223.7322, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2125223059
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2125223057}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 30
- m_FontStyle: 1
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: Link Wallet
---- !u!222 &2125223060
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2125223057}
- m_CullTransparentMesh: 1
---- !u!114 &2125223061
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2125223057}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_HorizontalFit: 0
- m_VerticalFit: 2
---- !u!1 &2131346467
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 2131346468}
- - component: {fileID: 2131346470}
- - component: {fileID: 2131346469}
- m_Layer: 5
- m_Name: Item Label
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2131346468
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2131346467}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 2045159901}
- m_RootOrder: 2
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 15, y: -0.5}
- m_SizeDelta: {x: -50, y: -3}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2131346469
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2131346467}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: Option A
---- !u!222 &2131346470
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 2131346467}
- m_CullTransparentMesh: 1
---- !u!222 &293399030726232056
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 6935084062638512844}
- m_CullTransparentMesh: 1
---- !u!222 &293399030727103736
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 6935084062638197196}
- m_CullTransparentMesh: 1
---- !u!222 &293399031110050337
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 6935084064100138773}
- m_CullTransparentMesh: 1
---- !u!114 &417577692934759470
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 842053281559571505}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: 'Signature:'
---- !u!114 &417577694665064951
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 842053283021113832}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: 'Wallet address:'
---- !u!114 &417577694665642743
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 842053283020511976}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: 'Type:'
---- !u!1 &621523117952554207
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 683026802746208498}
- - component: {fileID: 6681551192166702621}
- - component: {fileID: 4156385354414648707}
- - component: {fileID: 1142338628822901615}
- - component: {fileID: 2436580913274849346}
- m_Layer: 5
- m_Name: WalletAddressInput
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!1 &621523117953386463
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 683026802746942450}
- - component: {fileID: 6681551192165731613}
- - component: {fileID: 4156385354414964355}
- - component: {fileID: 1142338628823642223}
- - component: {fileID: 2436580913274018626}
- m_Layer: 5
- m_Name: TypeInput
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!1 &621523119414374662
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 683026804207883563}
- - component: {fileID: 6681551192550325188}
- - component: {fileID: 4156385353997404250}
- - component: {fileID: 1142338629240194742}
- - component: {fileID: 2436580912618352027}
- m_Layer: 5
- m_Name: SignatureInput
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &683026802746208498
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 621523117952554207}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 3459708478843638562}
- - {fileID: 2852832721877804791}
- m_Father: {fileID: 1200618890196121947}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 500, y: 60}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!224 &683026802746942450
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 621523117953386463}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 3459708478844469282}
- - {fileID: 2852832721878414839}
- m_Father: {fileID: 1200618890196691547}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 500, y: 60}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!224 &683026804207883563
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 621523119414374662}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 3459708477079975675}
- - {fileID: 2852832721187668782}
- m_Father: {fileID: 1200618888469994626}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 500, y: 60}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &842053281559571505
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 2211157700451780624}
- - component: {fileID: 5353902373920578231}
- - component: {fileID: 417577692934759470}
- - component: {fileID: 3749993899210284121}
- m_Layer: 5
- m_Name: Label
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!1 &842053283020511976
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 2211157701912739529}
- - component: {fileID: 5353902373498842222}
- - component: {fileID: 417577694665642743}
- - component: {fileID: 3749993898825706112}
- m_Layer: 5
- m_Name: Label
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!1 &842053283021113832
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 2211157701913734601}
- - component: {fileID: 5353902373499289454}
- - component: {fileID: 417577694665064951}
- - component: {fileID: 3749993898826283392}
- m_Layer: 5
- m_Name: Label
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!114 &1142338628822901615
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 621523117952554207}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Navigation:
- m_Mode: 3
- m_WrapAround: 0
- m_SelectOnUp: {fileID: 0}
- m_SelectOnDown: {fileID: 0}
- m_SelectOnLeft: {fileID: 0}
- m_SelectOnRight: {fileID: 0}
- m_Transition: 1
- m_Colors:
- m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
- m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
- m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
- m_ColorMultiplier: 1
- m_FadeDuration: 0.1
- m_SpriteState:
- m_HighlightedSprite: {fileID: 0}
- m_PressedSprite: {fileID: 0}
- m_SelectedSprite: {fileID: 0}
- m_DisabledSprite: {fileID: 0}
- m_AnimationTriggers:
- m_NormalTrigger: Normal
- m_HighlightedTrigger: Highlighted
- m_PressedTrigger: Pressed
- m_SelectedTrigger: Selected
- m_DisabledTrigger: Disabled
- m_Interactable: 1
- m_TargetGraphic: {fileID: 4156385354414648707}
- m_TextComponent: {fileID: 9180174496430485508}
- m_Placeholder: {fileID: 1593187222636685285}
- m_ContentType: 0
- m_InputType: 0
- m_AsteriskChar: 42
- m_KeyboardType: 0
- m_LineType: 0
- m_HideMobileInput: 0
- m_CharacterValidation: 0
- m_CharacterLimit: 0
- m_OnSubmit:
- m_PersistentCalls:
- m_Calls: []
- m_OnDidEndEdit:
- m_PersistentCalls:
- m_Calls: []
- m_OnValueChanged:
- m_PersistentCalls:
- m_Calls: []
- m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
- m_CustomCaretColor: 0
- m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412}
- m_Text:
- m_CaretBlinkRate: 0.85
- m_CaretWidth: 1
- m_ReadOnly: 0
- m_ShouldActivateOnSelect: 1
---- !u!114 &1142338628823642223
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 621523117953386463}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Navigation:
- m_Mode: 3
- m_WrapAround: 0
- m_SelectOnUp: {fileID: 0}
- m_SelectOnDown: {fileID: 0}
- m_SelectOnLeft: {fileID: 0}
- m_SelectOnRight: {fileID: 0}
- m_Transition: 1
- m_Colors:
- m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
- m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
- m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
- m_ColorMultiplier: 1
- m_FadeDuration: 0.1
- m_SpriteState:
- m_HighlightedSprite: {fileID: 0}
- m_PressedSprite: {fileID: 0}
- m_SelectedSprite: {fileID: 0}
- m_DisabledSprite: {fileID: 0}
- m_AnimationTriggers:
- m_NormalTrigger: Normal
- m_HighlightedTrigger: Highlighted
- m_PressedTrigger: Pressed
- m_SelectedTrigger: Selected
- m_DisabledTrigger: Disabled
- m_Interactable: 1
- m_TargetGraphic: {fileID: 4156385354414964355}
- m_TextComponent: {fileID: 9180174496430662404}
- m_Placeholder: {fileID: 1593187222637262053}
- m_ContentType: 0
- m_InputType: 0
- m_AsteriskChar: 42
- m_KeyboardType: 0
- m_LineType: 0
- m_HideMobileInput: 0
- m_CharacterValidation: 0
- m_CharacterLimit: 0
- m_OnSubmit:
- m_PersistentCalls:
- m_Calls: []
- m_OnDidEndEdit:
- m_PersistentCalls:
- m_Calls: []
- m_OnValueChanged:
- m_PersistentCalls:
- m_Calls: []
- m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
- m_CustomCaretColor: 0
- m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412}
- m_Text:
- m_CaretBlinkRate: 0.85
- m_CaretWidth: 1
- m_ReadOnly: 0
- m_ShouldActivateOnSelect: 1
---- !u!114 &1142338629240194742
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 621523119414374662}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Navigation:
- m_Mode: 3
- m_WrapAround: 0
- m_SelectOnUp: {fileID: 0}
- m_SelectOnDown: {fileID: 0}
- m_SelectOnLeft: {fileID: 0}
- m_SelectOnRight: {fileID: 0}
- m_Transition: 1
- m_Colors:
- m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
- m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
- m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
- m_ColorMultiplier: 1
- m_FadeDuration: 0.1
- m_SpriteState:
- m_HighlightedSprite: {fileID: 0}
- m_PressedSprite: {fileID: 0}
- m_SelectedSprite: {fileID: 0}
- m_DisabledSprite: {fileID: 0}
- m_AnimationTriggers:
- m_NormalTrigger: Normal
- m_HighlightedTrigger: Highlighted
- m_PressedTrigger: Pressed
- m_SelectedTrigger: Selected
- m_DisabledTrigger: Disabled
- m_Interactable: 1
- m_TargetGraphic: {fileID: 4156385353997404250}
- m_TextComponent: {fileID: 9180174495744611805}
- m_Placeholder: {fileID: 1593187224362467900}
- m_ContentType: 0
- m_InputType: 0
- m_AsteriskChar: 42
- m_KeyboardType: 0
- m_LineType: 0
- m_HideMobileInput: 0
- m_CharacterValidation: 0
- m_CharacterLimit: 0
- m_OnSubmit:
- m_PersistentCalls:
- m_Calls: []
- m_OnDidEndEdit:
- m_PersistentCalls:
- m_Calls: []
- m_OnValueChanged:
- m_PersistentCalls:
- m_Calls: []
- m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
- m_CustomCaretColor: 0
- m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412}
- m_Text:
- m_CaretBlinkRate: 0.85
- m_CaretWidth: 1
- m_ReadOnly: 0
- m_ShouldActivateOnSelect: 1
---- !u!224 &1200618888469994626
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 5203566034383008810}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 2211157700451780624}
- - {fileID: 683026804207883563}
- m_Father: {fileID: 617968206}
- m_RootOrder: 4
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!224 &1200618890196121947
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 5203566036142281203}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 2211157701913734601}
- - {fileID: 683026802746208498}
- m_Father: {fileID: 617968206}
- m_RootOrder: 3
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!224 &1200618890196691547
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 5203566036141671155}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 2211157701912739529}
- - {fileID: 683026802746942450}
- m_Father: {fileID: 617968206}
- m_RootOrder: 2
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1593187222636685285
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 4263083452294686162}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 2
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: External wallet address
---- !u!114 &1593187222637262053
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 4263083452293822162}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 2
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: e.g. io.metamask
---- !u!114 &1593187224362467900
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 4263083452950986763}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 2
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: External wallet signed payload
---- !u!224 &2211157700451780624
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 842053281559571505}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 1200618888469994626}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 200, y: 60}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!224 &2211157701912739529
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 842053283020511976}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 1200618890196691547}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 200, y: 60}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!224 &2211157701913734601
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 842053283021113832}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 1200618890196121947}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 200, y: 60}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2436580912618352027
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 621523119414374662}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: 200
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: 60
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!114 &2436580913274018626
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 621523117953386463}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: 200
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: 60
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!114 &2436580913274849346
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 621523117952554207}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: 200
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: 60
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!224 &2852832721187668782
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 6935084064100138773}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 683026804207883563}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: -0.5}
- m_SizeDelta: {x: -20, y: -13}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!224 &2852832721877804791
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 6935084062638512844}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 683026802746208498}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: -0.5}
- m_SizeDelta: {x: -20, y: -13}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!224 &2852832721878414839
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 6935084062638197196}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 683026802746942450}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: -0.5}
- m_SizeDelta: {x: -20, y: -13}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!224 &3459708477079975675
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 4263083452950986763}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 683026804207883563}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: -0.5}
- m_SizeDelta: {x: -20, y: -13}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!224 &3459708478843638562
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 4263083452294686162}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 683026802746208498}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: -0.5}
- m_SizeDelta: {x: -20, y: -13}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!224 &3459708478844469282
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 4263083452293822162}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 683026802746942450}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: -0.5}
- m_SizeDelta: {x: -20, y: -13}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &3749993898825706112
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 842053283020511976}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: -1
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: 60
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!114 &3749993898826283392
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 842053283021113832}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: -1
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: 60
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!114 &3749993899210284121
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 842053281559571505}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: -1
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: 60
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!114 &4054940648079929715
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 5203566034383008810}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Padding:
- m_Left: 0
- m_Right: 0
- m_Top: 0
- m_Bottom: 0
- m_ChildAlignment: 3
- m_Spacing: 16
- m_ChildForceExpandWidth: 0
- m_ChildForceExpandHeight: 0
- m_ChildControlWidth: 0
- m_ChildControlHeight: 0
- m_ChildScaleWidth: 1
- m_ChildScaleHeight: 1
- m_ReverseArrangement: 0
---- !u!114 &4054940649843345322
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 5203566036141671155}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Padding:
- m_Left: 0
- m_Right: 0
- m_Top: 0
- m_Bottom: 0
- m_ChildAlignment: 3
- m_Spacing: 16
- m_ChildForceExpandWidth: 0
- m_ChildForceExpandHeight: 0
- m_ChildControlWidth: 0
- m_ChildControlHeight: 0
- m_ChildScaleWidth: 1
- m_ChildScaleHeight: 1
- m_ReverseArrangement: 0
---- !u!114 &4054940649843791018
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 5203566036142281203}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Padding:
- m_Left: 0
- m_Right: 0
- m_Top: 0
- m_Bottom: 0
- m_ChildAlignment: 3
- m_Spacing: 16
- m_ChildForceExpandWidth: 0
- m_ChildForceExpandHeight: 0
- m_ChildControlWidth: 0
- m_ChildControlHeight: 0
- m_ChildScaleWidth: 1
- m_ChildScaleHeight: 1
- m_ReverseArrangement: 0
---- !u!114 &4156385353997404250
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 621523119414374662}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!114 &4156385354414648707
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 621523117952554207}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!114 &4156385354414964355
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 621523117953386463}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!1 &4263083452293822162
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 3459708478844469282}
- - component: {fileID: 5029879336673643284}
- - component: {fileID: 1593187222637262053}
- m_Layer: 5
- m_Name: Placeholder
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!1 &4263083452294686162
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 3459708478843638562}
- - component: {fileID: 5029879336674383892}
- - component: {fileID: 1593187222636685285}
- m_Layer: 5
- m_Name: Placeholder
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!1 &4263083452950986763
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 3459708477079975675}
- - component: {fileID: 5029879335183351245}
- - component: {fileID: 1593187224362467900}
- m_Layer: 5
- m_Name: Placeholder
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!222 &5029879335183351245
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 4263083452950986763}
- m_CullTransparentMesh: 1
---- !u!222 &5029879336673643284
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 4263083452293822162}
- m_CullTransparentMesh: 1
---- !u!222 &5029879336674383892
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 4263083452294686162}
- m_CullTransparentMesh: 1
---- !u!1 &5203566034383008810
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1200618888469994626}
- - component: {fileID: 4054940648079929715}
- - component: {fileID: 7857577594913267840}
- m_Layer: 0
- m_Name: Signature
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!1 &5203566036141671155
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1200618890196691547}
- - component: {fileID: 4054940649843345322}
- - component: {fileID: 7857577593152951897}
- m_Layer: 0
- m_Name: Type
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!1 &5203566036142281203
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1200618890196121947}
- - component: {fileID: 4054940649843791018}
- - component: {fileID: 7857577593153520985}
- m_Layer: 0
- m_Name: WalletAddress
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!222 &5353902373498842222
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 842053283020511976}
- m_CullTransparentMesh: 1
---- !u!222 &5353902373499289454
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 842053283021113832}
- m_CullTransparentMesh: 1
---- !u!222 &5353902373920578231
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 842053281559571505}
- m_CullTransparentMesh: 1
---- !u!222 &6681551192165731613
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 621523117953386463}
- m_CullTransparentMesh: 1
---- !u!222 &6681551192166702621
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 621523117952554207}
- m_CullTransparentMesh: 1
---- !u!222 &6681551192550325188
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 621523119414374662}
- m_CullTransparentMesh: 1
---- !u!1 &6935084062638197196
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 2852832721878414839}
- - component: {fileID: 293399030727103736}
- - component: {fileID: 9180174496430662404}
- m_Layer: 5
- m_Name: Text (Legacy)
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!1 &6935084062638512844
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 2852832721877804791}
- - component: {fileID: 293399030726232056}
- - component: {fileID: 9180174496430485508}
- m_Layer: 5
- m_Name: Text (Legacy)
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!1 &6935084064100138773
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 2852832721187668782}
- - component: {fileID: 293399031110050337}
- - component: {fileID: 9180174495744611805}
- m_Layer: 5
- m_Name: Text (Legacy)
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!114 &7857577593152951897
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 5203566036141671155}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: -1
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: 80
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!114 &7857577593153520985
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 5203566036142281203}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: -1
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: 80
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!114 &7857577594913267840
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 5203566034383008810}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: -1
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: 80
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!114 &9180174495744611805
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 6935084064100138773}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 0
- m_HorizontalOverflow: 1
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text:
---- !u!114 &9180174496430485508
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 6935084062638512844}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 0
- m_HorizontalOverflow: 1
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text:
---- !u!114 &9180174496430662404
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 6935084062638197196}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 0
- m_HorizontalOverflow: 1
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text:
diff --git a/sample/Assets/Scenes/ZkEvmApi/LinkWallet.unity.meta b/sample/Assets/Scenes/ZkEvmApi/LinkWallet.unity.meta
deleted file mode 100644
index cf15aa9b7..000000000
--- a/sample/Assets/Scenes/ZkEvmApi/LinkWallet.unity.meta
+++ /dev/null
@@ -1,7 +0,0 @@
-fileFormatVersion: 2
-guid: d62e0cc2be6134dadaa8057f46fb8761
-DefaultImporter:
- externalObjects: {}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/sample/Assets/Scenes/ZkEvmApi/ZkEvmApiScene.unity b/sample/Assets/Scenes/ZkEvmApi/ZkEvmApiScene.unity
deleted file mode 100644
index cafd5e301..000000000
--- a/sample/Assets/Scenes/ZkEvmApi/ZkEvmApiScene.unity
+++ /dev/null
@@ -1,1177 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!29 &1
-OcclusionCullingSettings:
- m_ObjectHideFlags: 0
- serializedVersion: 2
- m_OcclusionBakeSettings:
- smallestOccluder: 5
- smallestHole: 0.25
- backfaceThreshold: 100
- m_SceneGUID: 00000000000000000000000000000000
- m_OcclusionCullingData: {fileID: 0}
---- !u!104 &2
-RenderSettings:
- m_ObjectHideFlags: 0
- serializedVersion: 9
- m_Fog: 0
- m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
- m_FogMode: 3
- m_FogDensity: 0.01
- m_LinearFogStart: 0
- m_LinearFogEnd: 300
- m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
- m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
- m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
- m_AmbientIntensity: 1
- m_AmbientMode: 3
- m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
- m_SkyboxMaterial: {fileID: 0}
- m_HaloStrength: 0.5
- m_FlareStrength: 1
- m_FlareFadeSpeed: 3
- m_HaloTexture: {fileID: 0}
- m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
- m_DefaultReflectionMode: 0
- m_DefaultReflectionResolution: 128
- m_ReflectionBounces: 1
- m_ReflectionIntensity: 1
- m_CustomReflection: {fileID: 0}
- m_Sun: {fileID: 0}
- m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1}
- m_UseRadianceAmbientProbe: 0
---- !u!157 &3
-LightmapSettings:
- m_ObjectHideFlags: 0
- serializedVersion: 12
- m_GIWorkflowMode: 1
- m_GISettings:
- serializedVersion: 2
- m_BounceScale: 1
- m_IndirectOutputScale: 1
- m_AlbedoBoost: 1
- m_EnvironmentLightingMode: 0
- m_EnableBakedLightmaps: 0
- m_EnableRealtimeLightmaps: 0
- m_LightmapEditorSettings:
- serializedVersion: 12
- m_Resolution: 2
- m_BakeResolution: 40
- m_AtlasSize: 1024
- m_AO: 0
- m_AOMaxDistance: 1
- m_CompAOExponent: 1
- m_CompAOExponentDirect: 0
- m_ExtractAmbientOcclusion: 0
- m_Padding: 2
- m_LightmapParameters: {fileID: 0}
- m_LightmapsBakeMode: 1
- m_TextureCompression: 1
- m_FinalGather: 0
- m_FinalGatherFiltering: 1
- m_FinalGatherRayCount: 256
- m_ReflectionCompression: 2
- m_MixedBakeMode: 2
- m_BakeBackend: 0
- m_PVRSampling: 1
- m_PVRDirectSampleCount: 32
- m_PVRSampleCount: 500
- m_PVRBounces: 2
- m_PVREnvironmentSampleCount: 500
- m_PVREnvironmentReferencePointCount: 2048
- m_PVRFilteringMode: 2
- m_PVRDenoiserTypeDirect: 0
- m_PVRDenoiserTypeIndirect: 0
- m_PVRDenoiserTypeAO: 0
- m_PVRFilterTypeDirect: 0
- m_PVRFilterTypeIndirect: 0
- m_PVRFilterTypeAO: 0
- m_PVREnvironmentMIS: 0
- m_PVRCulling: 1
- m_PVRFilteringGaussRadiusDirect: 1
- m_PVRFilteringGaussRadiusIndirect: 5
- m_PVRFilteringGaussRadiusAO: 2
- m_PVRFilteringAtrousPositionSigmaDirect: 0.5
- m_PVRFilteringAtrousPositionSigmaIndirect: 2
- m_PVRFilteringAtrousPositionSigmaAO: 1
- m_ExportTrainingData: 0
- m_TrainingDataDestination: TrainingData
- m_LightProbeSampleCountMultiplier: 4
- m_LightingDataAsset: {fileID: 0}
- m_LightingSettings: {fileID: 4890085278179872738, guid: bb1808757e1b24647ac72e9691d1d79a, type: 2}
---- !u!196 &4
-NavMeshSettings:
- serializedVersion: 2
- m_ObjectHideFlags: 0
- m_BuildSettings:
- serializedVersion: 2
- agentTypeID: 0
- agentRadius: 0.5
- agentHeight: 2
- agentSlope: 45
- agentClimb: 0.4
- ledgeDropHeight: 0
- maxJumpAcrossDistance: 0
- minRegionArea: 2
- manualCellSize: 0
- cellSize: 0.16666667
- manualTileSize: 0
- tileSize: 256
- accuratePlacement: 0
- maxJobWorkers: 0
- preserveTilesOutsideBounds: 0
- debug:
- m_Flags: 0
- m_NavMeshData: {fileID: 0}
---- !u!1 &519420028
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 519420032}
- - component: {fileID: 519420031}
- - component: {fileID: 519420029}
- m_Layer: 0
- m_Name: Main Camera
- m_TagString: MainCamera
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!81 &519420029
-AudioListener:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 519420028}
- m_Enabled: 1
---- !u!20 &519420031
-Camera:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 519420028}
- m_Enabled: 1
- serializedVersion: 2
- m_ClearFlags: 2
- m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0}
- m_projectionMatrixMode: 1
- m_GateFitMode: 2
- m_FOVAxisMode: 0
- m_SensorSize: {x: 36, y: 24}
- m_LensShift: {x: 0, y: 0}
- m_FocalLength: 50
- m_NormalizedViewPortRect:
- serializedVersion: 2
- x: 0
- y: 0
- width: 1
- height: 1
- near clip plane: 0.3
- far clip plane: 1000
- field of view: 60
- orthographic: 1
- orthographic size: 5
- m_Depth: -1
- m_CullingMask:
- serializedVersion: 2
- m_Bits: 4294967295
- m_RenderingPath: -1
- m_TargetTexture: {fileID: 0}
- m_TargetDisplay: 0
- m_TargetEye: 0
- m_HDR: 1
- m_AllowMSAA: 0
- m_AllowDynamicResolution: 0
- m_ForceIntoRT: 0
- m_OcclusionCulling: 0
- m_StereoConvergence: 10
- m_StereoSeparation: 0.022
---- !u!4 &519420032
-Transform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 519420028}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: -10}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 0}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
---- !u!1 &582652581
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 582652582}
- - component: {fileID: 582652585}
- - component: {fileID: 582652584}
- - component: {fileID: 582652583}
- - component: {fileID: 582652586}
- m_Layer: 5
- m_Name: Sample Canves
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &582652582
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 582652581}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 689091322}
- - {fileID: 1381774223}
- m_Father: {fileID: 1227009913}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &582652583
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 582652581}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreReversedGraphics: 1
- m_BlockingObjects: 0
- m_BlockingMask:
- serializedVersion: 2
- m_Bits: 4294967295
---- !u!114 &582652584
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 582652581}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_UiScaleMode: 0
- m_ReferencePixelsPerUnit: 100
- m_ScaleFactor: 1
- m_ReferenceResolution: {x: 800, y: 600}
- m_ScreenMatchMode: 0
- m_MatchWidthOrHeight: 0
- m_PhysicalUnit: 3
- m_FallbackScreenDPI: 96
- m_DefaultSpriteDPI: 96
- m_DynamicPixelsPerUnit: 1
- m_PresetInfoIsWorld: 0
---- !u!223 &582652585
-Canvas:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 582652581}
- m_Enabled: 1
- serializedVersion: 3
- m_RenderMode: 0
- m_Camera: {fileID: 0}
- m_PlaneDistance: 100
- m_PixelPerfect: 0
- m_ReceivesEvents: 1
- m_OverrideSorting: 0
- m_OverridePixelPerfect: 0
- m_SortingBucketNormalizedSize: 0
- m_AdditionalShaderChannelsFlag: 0
- m_SortingLayerID: 0
- m_SortingOrder: 0
- m_TargetDisplay: 0
---- !u!114 &582652586
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 582652581}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Padding:
- m_Left: 0
- m_Right: 0
- m_Top: 0
- m_Bottom: 0
- m_ChildAlignment: 0
- m_Spacing: 20
- m_ChildForceExpandWidth: 1
- m_ChildForceExpandHeight: 0
- m_ChildControlWidth: 1
- m_ChildControlHeight: 1
- m_ChildScaleWidth: 0
- m_ChildScaleHeight: 0
- m_ReverseArrangement: 0
---- !u!1 &689091321
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 689091322}
- - component: {fileID: 689091323}
- m_Layer: 5
- m_Name: Title
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &689091322
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 689091321}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 1067397623}
- m_Father: {fileID: 582652582}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &689091323
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 689091321}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: -1
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: 40
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!1 &984697276
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 984697277}
- - component: {fileID: 984697279}
- - component: {fileID: 984697278}
- - component: {fileID: 984697280}
- - component: {fileID: 984697281}
- m_Layer: 5
- m_Name: LinkWalletBtn
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &984697277
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 984697276}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 1797422088}
- m_Father: {fileID: 1381774223}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &984697278
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 984697276}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
- m_Type: 1
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &984697279
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 984697276}
- m_CullTransparentMesh: 1
---- !u!114 &984697280
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 984697276}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Navigation:
- m_Mode: 3
- m_WrapAround: 0
- m_SelectOnUp: {fileID: 0}
- m_SelectOnDown: {fileID: 0}
- m_SelectOnLeft: {fileID: 0}
- m_SelectOnRight: {fileID: 0}
- m_Transition: 1
- m_Colors:
- m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
- m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
- m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
- m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
- m_ColorMultiplier: 1
- m_FadeDuration: 0.1
- m_SpriteState:
- m_HighlightedSprite: {fileID: 0}
- m_PressedSprite: {fileID: 0}
- m_SelectedSprite: {fileID: 0}
- m_DisabledSprite: {fileID: 0}
- m_AnimationTriggers:
- m_NormalTrigger: Normal
- m_HighlightedTrigger: Highlighted
- m_PressedTrigger: Pressed
- m_SelectedTrigger: Selected
- m_DisabledTrigger: Disabled
- m_Interactable: 1
- m_TargetGraphic: {fileID: 984697278}
- m_OnClick:
- m_PersistentCalls:
- m_Calls:
- - m_Target: {fileID: 1192763474}
- m_TargetAssemblyTypeName: ZkEvmApiScript, Assembly-CSharp
- m_MethodName: LinkWallet
- m_Mode: 1
- m_Arguments:
- m_ObjectArgument: {fileID: 0}
- m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
- m_IntArgument: 0
- m_FloatArgument: 0
- m_StringArgument:
- m_BoolArgument: 0
- m_CallState: 2
---- !u!114 &984697281
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 984697276}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: -1
- m_MinHeight: -1
- m_PreferredWidth: 260
- m_PreferredHeight: 60
- m_FlexibleWidth: -1
- m_FlexibleHeight: -1
- m_LayoutPriority: 1
---- !u!1 &989112235
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 989112236}
- - component: {fileID: 989112237}
- m_Layer: 5
- m_Name: Spacer
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &989112236
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 989112235}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 1227009913}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &989112237
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 989112235}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreLayout: 0
- m_MinWidth: -1
- m_MinHeight: -1
- m_PreferredWidth: -1
- m_PreferredHeight: -1
- m_FlexibleWidth: -1
- m_FlexibleHeight: 1
- m_LayoutPriority: 1
---- !u!1 &1067397622
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1067397623}
- - component: {fileID: 1067397625}
- - component: {fileID: 1067397624}
- m_Layer: 5
- m_Name: Title
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1067397623
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1067397622}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 689091322}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 1}
- m_AnchorMax: {x: 0, y: 1}
- m_AnchoredPosition: {x: 200, y: -19.999996}
- m_SizeDelta: {x: 400, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1067397624
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1067397622}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 30
- m_FontStyle: 1
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 3
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: ZkEvmApi Scene
---- !u!222 &1067397625
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1067397622}
- m_CullTransparentMesh: 1
---- !u!1 &1192763471
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1192763473}
- - component: {fileID: 1192763474}
- m_Layer: 0
- m_Name: Script
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!4 &1192763473
-Transform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1192763471}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 326.73624, y: 181.70598, z: -2.506466}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 0}
- m_RootOrder: 2
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
---- !u!114 &1192763474
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1192763471}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: f5199d09ff5d4b68880b3f804c404c14, type: 3}
- m_Name:
- m_EditorClassIdentifier:
---- !u!1 &1227009912
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1227009913}
- - component: {fileID: 1227009914}
- - component: {fileID: 1227009915}
- m_Layer: 5
- m_Name: Content
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1227009913
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1227009912}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 582652582}
- - {fileID: 989112236}
- m_Father: {fileID: 1850628784}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1227009914
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1227009912}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 3eff14abe3dbe4539982d7c5e20b0a58, type: 3}
- m_Name:
- m_EditorClassIdentifier:
---- !u!114 &1227009915
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1227009912}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Padding:
- m_Left: 20
- m_Right: 20
- m_Top: 20
- m_Bottom: 20
- m_ChildAlignment: 0
- m_Spacing: 20
- m_ChildForceExpandWidth: 1
- m_ChildForceExpandHeight: 0
- m_ChildControlWidth: 1
- m_ChildControlHeight: 1
- m_ChildScaleWidth: 0
- m_ChildScaleHeight: 0
- m_ReverseArrangement: 0
---- !u!1 &1260077984
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1260077987}
- - component: {fileID: 1260077986}
- - component: {fileID: 1260077985}
- m_Layer: 0
- m_Name: EventSystem
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!114 &1260077985
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1260077984}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_SendPointerHoverToParent: 1
- m_HorizontalAxis: Horizontal
- m_VerticalAxis: Vertical
- m_SubmitButton: Submit
- m_CancelButton: Cancel
- m_InputActionsPerSecond: 10
- m_RepeatDelay: 0.5
- m_ForceModuleActive: 0
---- !u!114 &1260077986
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1260077984}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_FirstSelected: {fileID: 0}
- m_sendNavigationEvents: 1
- m_DragThreshold: 10
---- !u!4 &1260077987
-Transform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1260077984}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 0}
- m_RootOrder: 3
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
---- !u!1 &1381774222
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1381774223}
- - component: {fileID: 1381774224}
- m_Layer: 5
- m_Name: Functions
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1381774223
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1381774222}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 984697277}
- m_Father: {fileID: 582652582}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1381774224
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1381774222}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 558b109da67a27b4686138b955f3a7e8, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Padding:
- m_Left: 0
- m_Right: 0
- m_Top: 0
- m_Bottom: 0
- m_ChildAlignment: 3
- SpacingX: 16
- SpacingY: 16
- ExpandHorizontalSpacing: 0
- ChildForceExpandWidth: 0
- ChildForceExpandHeight: 0
- invertOrder: 0
- m_StartAxis: 0
---- !u!1 &1797422087
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1797422088}
- - component: {fileID: 1797422090}
- - component: {fileID: 1797422089}
- m_Layer: 5
- m_Name: Text (Legacy)
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1797422088
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1797422087}
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_ConstrainProportionsScale: 0
- m_Children: []
- m_Father: {fileID: 984697277}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 1, y: 1}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1797422089
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1797422087}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 24
- m_FontStyle: 0
- m_BestFit: 0
- m_MinSize: 2
- m_MaxSize: 40
- m_Alignment: 4
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 0
- m_VerticalOverflow: 0
- m_LineSpacing: 1
- m_Text: Link Wallet
---- !u!222 &1797422090
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1797422087}
- m_CullTransparentMesh: 1
---- !u!1 &1850628783
-GameObject:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- serializedVersion: 6
- m_Component:
- - component: {fileID: 1850628784}
- - component: {fileID: 1850628787}
- - component: {fileID: 1850628786}
- - component: {fileID: 1850628785}
- - component: {fileID: 1850628788}
- - component: {fileID: 1850628790}
- - component: {fileID: 1850628789}
- m_Layer: 5
- m_Name: Canvas
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1850628784
-RectTransform:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1850628783}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 0, y: 0, z: 0}
- m_ConstrainProportionsScale: 0
- m_Children:
- - {fileID: 1227009913}
- m_Father: {fileID: 0}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 0, y: 0}
- m_SizeDelta: {x: 0, y: 0}
- m_Pivot: {x: 0, y: 0}
---- !u!114 &1850628785
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1850628783}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_IgnoreReversedGraphics: 1
- m_BlockingObjects: 0
- m_BlockingMask:
- serializedVersion: 2
- m_Bits: 4294967295
---- !u!114 &1850628786
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1850628783}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_UiScaleMode: 1
- m_ReferencePixelsPerUnit: 100
- m_ScaleFactor: 1
- m_ReferenceResolution: {x: 1600, y: 1200}
- m_ScreenMatchMode: 0
- m_MatchWidthOrHeight: 0.5
- m_PhysicalUnit: 3
- m_FallbackScreenDPI: 96
- m_DefaultSpriteDPI: 96
- m_DynamicPixelsPerUnit: 1
- m_PresetInfoIsWorld: 0
---- !u!223 &1850628787
-Canvas:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1850628783}
- m_Enabled: 1
- serializedVersion: 3
- m_RenderMode: 0
- m_Camera: {fileID: 0}
- m_PlaneDistance: 100
- m_PixelPerfect: 0
- m_ReceivesEvents: 1
- m_OverrideSorting: 0
- m_OverridePixelPerfect: 0
- m_SortingBucketNormalizedSize: 0
- m_AdditionalShaderChannelsFlag: 0
- m_SortingLayerID: 0
- m_SortingOrder: 0
- m_TargetDisplay: 0
---- !u!114 &1850628788
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1850628783}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_HorizontalFit: 0
- m_VerticalFit: 0
---- !u!114 &1850628789
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1850628783}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 0, g: 0, b: 0, a: 1}
- m_RaycastTarget: 1
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
- m_Maskable: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_Sprite: {fileID: 0}
- m_Type: 0
- m_PreserveAspect: 0
- m_FillCenter: 1
- m_FillMethod: 4
- m_FillAmount: 1
- m_FillClockwise: 1
- m_FillOrigin: 0
- m_UseSpriteMesh: 0
- m_PixelsPerUnitMultiplier: 1
---- !u!222 &1850628790
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 1850628783}
- m_CullTransparentMesh: 1
diff --git a/sample/Assets/Scenes/ZkEvmApi/ZkEvmApiScene.unity.meta b/sample/Assets/Scenes/ZkEvmApi/ZkEvmApiScene.unity.meta
deleted file mode 100644
index 204551d80..000000000
--- a/sample/Assets/Scenes/ZkEvmApi/ZkEvmApiScene.unity.meta
+++ /dev/null
@@ -1,7 +0,0 @@
-fileFormatVersion: 2
-guid: 8e30140f6d62048f793e5b7613d50b7c
-DefaultImporter:
- externalObjects: {}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/sample/Assets/Scripts/Passport/Other/AuthenticatedSceneNavigation.cs b/sample/Assets/Scripts/Passport/Other/AuthenticatedSceneNavigation.cs
index 2c25c0f18..8a60783e4 100644
--- a/sample/Assets/Scripts/Passport/Other/AuthenticatedSceneNavigation.cs
+++ b/sample/Assets/Scripts/Passport/Other/AuthenticatedSceneNavigation.cs
@@ -34,10 +34,5 @@ public void ShowSetCallTimeout()
SceneManager.LoadScene("SetCallTimeout");
}
- public void ShowLinkWallet()
- {
- SceneManager.LoadScene("Passport/LinkWallet");
- }
-
// Add more navigation methods as needed for other features
}
\ No newline at end of file
diff --git a/sample/Assets/Scripts/ZkEvmApi.meta b/sample/Assets/Scripts/ZkEvmApi.meta
deleted file mode 100644
index 2179f2fa3..000000000
--- a/sample/Assets/Scripts/ZkEvmApi.meta
+++ /dev/null
@@ -1,3 +0,0 @@
-fileFormatVersion: 2
-guid: 105438f95fb24dffb89401683dd8dd97
-timeCreated: 1747115889
diff --git a/sample/Assets/Scripts/ZkEvmApi/LinkWalletScript.cs b/sample/Assets/Scripts/ZkEvmApi/LinkWalletScript.cs
deleted file mode 100644
index d60fcefe4..000000000
--- a/sample/Assets/Scripts/ZkEvmApi/LinkWalletScript.cs
+++ /dev/null
@@ -1,98 +0,0 @@
-using System;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-using UnityEngine;
-using UnityEngine.UI;
-using UnityEngine.SceneManagement;
-using Immutable.Passport;
-
-public class LinkWalletScript : MonoBehaviour
-{
- private enum Environment
- {
- Production,
- Sandbox,
- Development
- }
-
-#pragma warning disable CS8618
- [SerializeField] private Text Output;
-
- [SerializeField] private Dropdown EnvironmentDropdown;
- [SerializeField] private InputField AccessTokenInput;
- [SerializeField] private InputField TypeInput;
- [SerializeField] private InputField WalletAddressInput;
- [SerializeField] private InputField SignatureInput;
- [SerializeField] private InputField NonceInput;
-#pragma warning restore CS8618
-
- ///
- /// Link an external EOA wallet by providing an EIP-712 signature.
- ///
- public async void LinkWallet()
- {
- ShowOutput("Linking wallet...");
-
- try
- {
- var environments = (Environment[])Enum.GetValues(typeof(Environment));
- var environment = environments[EnvironmentDropdown.value];
-
- var config = new Configuration
- {
- BasePath = environment switch
- {
- Environment.Production => "https://api.immutable.com",
- Environment.Sandbox => "https://api.sandbox.immutable.com",
- Environment.Development => "https://api.dev.immutable.com",
- _ => ""
- },
- // Use Immutable Unity SDK Passport package to get the access token
- AccessToken = AccessTokenInput.text
- };
-
- var apiInstance = new PassportProfileApi(config);
- var linkWalletV2Request = new LinkWalletV2Request(
- type: TypeInput.text,
- walletAddress: WalletAddressInput.text,
- signature: SignatureInput.text,
- nonce: NonceInput.text);
-
- await apiInstance.LinkWalletV2Async(linkWalletV2Request);
-
- ShowOutput($"Linked external wallet: {WalletAddressInput.text}");
- }
- catch (ApiException e)
- {
- Debug.Log($"Exception when calling PassportProfileApi.LinkWalletV2: {e.Message}");
- Debug.Log($"Status Code: {e.ErrorCode}");
- ShowOutput($"Failed to link wallet: {e.Message}");
- }
- catch (Exception e)
- {
- ShowOutput($"Failed to link wallet: {e.Message}");
- }
- }
-
-
- ///
- /// Navigates back to the authenticated scene.
- ///
- public void Cancel()
- {
- SceneManager.LoadScene("AuthenticatedScene");
- }
-
- ///
- /// Prints the specified message to the output box.
- ///
- /// The message to print
- private void ShowOutput(string message)
- {
- if (Output != null)
- {
- Output.text = message;
- }
- }
-}
\ No newline at end of file
diff --git a/sample/Assets/Scripts/ZkEvmApi/LinkWalletScript.cs.meta b/sample/Assets/Scripts/ZkEvmApi/LinkWalletScript.cs.meta
deleted file mode 100644
index ea5a30059..000000000
--- a/sample/Assets/Scripts/ZkEvmApi/LinkWalletScript.cs.meta
+++ /dev/null
@@ -1,3 +0,0 @@
-fileFormatVersion: 2
-guid: e8fdf73edf3f49079fcf50eeb72b816f
-timeCreated: 1733271469
\ No newline at end of file
diff --git a/sample/Assets/Scripts/ZkEvmApi/ZkEvmApiScript.cs b/sample/Assets/Scripts/ZkEvmApi/ZkEvmApiScript.cs
deleted file mode 100644
index b809e21b9..000000000
--- a/sample/Assets/Scripts/ZkEvmApi/ZkEvmApiScript.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using UnityEngine;
-using UnityEngine.SceneManagement;
-
-public class ZkEvmApiScript : MonoBehaviour
-{
- public void LinkWallet()
- {
- SceneManager.LoadScene("LinkWallet");
- }
-}
\ No newline at end of file
diff --git a/sample/Assets/Scripts/ZkEvmApi/ZkEvmApiScript.cs.meta b/sample/Assets/Scripts/ZkEvmApi/ZkEvmApiScript.cs.meta
deleted file mode 100644
index 477468e94..000000000
--- a/sample/Assets/Scripts/ZkEvmApi/ZkEvmApiScript.cs.meta
+++ /dev/null
@@ -1,3 +0,0 @@
-fileFormatVersion: 2
-guid: f5199d09ff5d4b68880b3f804c404c14
-timeCreated: 1747116534
\ No newline at end of file
diff --git a/sample/Packages/manifest.json b/sample/Packages/manifest.json
index 1499e9804..07375dcf6 100644
--- a/sample/Packages/manifest.json
+++ b/sample/Packages/manifest.json
@@ -2,7 +2,6 @@
"dependencies": {
"com.alttester.sdk": "2.2.5",
"com.cysharp.unitask": "2.3.3",
- "com.immutable.api.zkevm": "file:../../src/Packages/ZkEvmApi",
"com.immutable.passport": "file:../../src/Packages/Passport",
"com.unity.ai.navigation": "1.1.4",
"com.unity.editorcoroutines": "1.0.0",
diff --git a/sample/Packages/packages-lock.json b/sample/Packages/packages-lock.json
index adc522e23..8d35830b8 100644
--- a/sample/Packages/packages-lock.json
+++ b/sample/Packages/packages-lock.json
@@ -18,14 +18,6 @@
"dependencies": {},
"url": "https://package.openupm.com"
},
- "com.immutable.api.zkevm": {
- "version": "file:../../src/Packages/ZkEvmApi",
- "depth": 0,
- "source": "local",
- "dependencies": {
- "com.unity.nuget.newtonsoft-json": "3.0.2"
- }
- },
"com.immutable.passport": {
"version": "file:../../src/Packages/Passport",
"depth": 0,
diff --git a/sample/ProjectSettings/EditorBuildSettings.asset b/sample/ProjectSettings/EditorBuildSettings.asset
index ae18079af..3fb1c6567 100644
--- a/sample/ProjectSettings/EditorBuildSettings.asset
+++ b/sample/ProjectSettings/EditorBuildSettings.asset
@@ -32,21 +32,6 @@ EditorBuildSettings:
- enabled: 1
path: Assets/Scenes/Passport/Other/SetCallTimeout.unity
guid: 73ba07ed56efd1949b722042d50dc444
- - enabled: 0
- path: Assets/Scenes/ZkEvmApi/LinkWallet.unity
- guid: d62e0cc2be6134dadaa8057f46fb8761
- - enabled: 0
- path: Assets/Scenes/Marketplace/MarketplaceScene.unity
- guid: 18f278ca9e9d34901bcc2919a143809c
- - enabled: 0
- path: Assets/Scenes/Marketplace/OnRampScene.unity
- guid: 27e0bb5e5d04a4955b88c9f329422c89
- - enabled: 0
- path: Assets/Scenes/Marketplace/SwapScene.unity
- guid: a0a7416ea738d4bea8cd720ed33efbde
- - enabled: 0
- path: Assets/Scenes/Marketplace/BridgeScene.unity
- guid: ce7072a24f12e4c91b658c798755b355
- enabled: 0
path: Assets/Scenes/Passport/WebViewTest.unity
guid: c8e2712d59c2d9a479d9177e52dd28c5
diff --git a/src/Packages/ZkEvmApi/CHANGELOG.md b/src/Packages/ZkEvmApi/CHANGELOG.md
deleted file mode 100644
index e602bd7aa..000000000
--- a/src/Packages/ZkEvmApi/CHANGELOG.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# Changelog
-
-Please see https://github.com/immutable/unity-immutable-sdk/releases
\ No newline at end of file
diff --git a/src/Packages/ZkEvmApi/CHANGELOG.md.meta b/src/Packages/ZkEvmApi/CHANGELOG.md.meta
deleted file mode 100644
index 29f12f41b..000000000
--- a/src/Packages/ZkEvmApi/CHANGELOG.md.meta
+++ /dev/null
@@ -1,7 +0,0 @@
-fileFormatVersion: 2
-guid: c295f6334a9d24f609c11912ef988bfd
-TextScriptImporter:
- externalObjects: {}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/src/Packages/ZkEvmApi/Documentation~/APIError400.md b/src/Packages/ZkEvmApi/Documentation~/APIError400.md
deleted file mode 100644
index 23ac85761..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/APIError400.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Immutable.Api.ZkEvm.Model.APIError400
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Message** | **string** | Error Message |
-**Link** | **string** | Link to IMX documentation that can help resolve this error |
-**TraceId** | **string** | Trace ID of the initial request |
-**Code** | **string** | Error Code |
-**Details** | **Object** | Additional details to help resolve the error |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/APIError401.md b/src/Packages/ZkEvmApi/Documentation~/APIError401.md
deleted file mode 100644
index 4d9cdb595..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/APIError401.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Immutable.Api.ZkEvm.Model.APIError401
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Message** | **string** | Error Message |
-**Link** | **string** | Link to IMX documentation that can help resolve this error |
-**TraceId** | **string** | Trace ID of the initial request |
-**Code** | **string** | Error Code |
-**Details** | **Object** | Additional details to help resolve the error |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/APIError403.md b/src/Packages/ZkEvmApi/Documentation~/APIError403.md
deleted file mode 100644
index 4d6f915bc..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/APIError403.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Immutable.Api.ZkEvm.Model.APIError403
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Message** | **string** | Error Message |
-**Link** | **string** | Link to IMX documentation that can help resolve this error |
-**TraceId** | **string** | Trace ID of the initial request |
-**Code** | **string** | Error Code |
-**Details** | **Object** | Additional details to help resolve the error |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/APIError404.md b/src/Packages/ZkEvmApi/Documentation~/APIError404.md
deleted file mode 100644
index 9e52a646d..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/APIError404.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Immutable.Api.ZkEvm.Model.APIError404
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Message** | **string** | Error Message |
-**Link** | **string** | Link to IMX documentation that can help resolve this error |
-**TraceId** | **string** | Trace ID of the initial request |
-**Code** | **string** | Error Code |
-**Details** | **Object** | Additional details to help resolve the error |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/APIError409.md b/src/Packages/ZkEvmApi/Documentation~/APIError409.md
deleted file mode 100644
index 5e34a8dd4..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/APIError409.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Immutable.Api.ZkEvm.Model.APIError409
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Message** | **string** | Error Message |
-**Link** | **string** | Link to IMX documentation that can help resolve this error |
-**TraceId** | **string** | Trace ID of the initial request |
-**Code** | **string** | Error Code |
-**Details** | **Dictionary<string, Object>** | Additional details to help resolve the error |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/APIError429.md b/src/Packages/ZkEvmApi/Documentation~/APIError429.md
deleted file mode 100644
index 71653975f..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/APIError429.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Immutable.Api.ZkEvm.Model.APIError429
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Message** | **string** | Error Message |
-**Link** | **string** | Link to IMX documentation that can help resolve this error |
-**TraceId** | **string** | Trace ID of the initial request |
-**Code** | **string** | Error Code |
-**Details** | **Object** | Additional details to help resolve the error |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/APIError500.md b/src/Packages/ZkEvmApi/Documentation~/APIError500.md
deleted file mode 100644
index ea8e0d068..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/APIError500.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Immutable.Api.ZkEvm.Model.APIError500
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Message** | **string** | Error Message |
-**Link** | **string** | Link to IMX documentation that can help resolve this error |
-**TraceId** | **string** | Trace ID of the initial request |
-**Code** | **string** | Error Code |
-**Details** | **Object** | Additional details to help resolve the error |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/APIError501.md b/src/Packages/ZkEvmApi/Documentation~/APIError501.md
deleted file mode 100644
index 30e17064c..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/APIError501.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Immutable.Api.ZkEvm.Model.APIError501
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Message** | **string** | Error Message |
-**Link** | **string** | Link to IMX documentation that can help resolve this error |
-**TraceId** | **string** | Trace ID of the initial request |
-**Code** | **string** | Error Code |
-**Details** | **Object** | Additional details to help resolve the error |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ActiveOrderStatus.md b/src/Packages/ZkEvmApi/Documentation~/ActiveOrderStatus.md
deleted file mode 100644
index dd925c0b4..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ActiveOrderStatus.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ActiveOrderStatus
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Name** | **string** | The order status that indicates an order can be fulfilled. |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ActivitiesApi.md b/src/Packages/ZkEvmApi/Documentation~/ActivitiesApi.md
deleted file mode 100644
index d0e664b6d..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ActivitiesApi.md
+++ /dev/null
@@ -1,320 +0,0 @@
-# Immutable.Api.ZkEvm.Api.ActivitiesApi
-
-All URIs are relative to *https://api.sandbox.immutable.com*
-
-| Method | HTTP request | Description |
-|--------|--------------|-------------|
-| [**GetActivity**](ActivitiesApi.md#getactivity) | **GET** /v1/chains/{chain_name}/activities/{activity_id} | Get a single activity by ID |
-| [**ListActivities**](ActivitiesApi.md#listactivities) | **GET** /v1/chains/{chain_name}/activities | List all activities |
-| [**ListActivityHistory**](ActivitiesApi.md#listactivityhistory) | **GET** /v1/chains/{chain_name}/activity-history | List history of activities |
-
-
-# **GetActivity**
-> GetActivityResult GetActivity (string chainName, Guid activityId)
-
-Get a single activity by ID
-
-Get a single activity by ID
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class GetActivityExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new ActivitiesApi(config);
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var activityId = "activityId_example"; // Guid | The id of activity
-
- try
- {
- // Get a single activity by ID
- GetActivityResult result = apiInstance.GetActivity(chainName, activityId);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling ActivitiesApi.GetActivity: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the GetActivityWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Get a single activity by ID
- ApiResponse response = apiInstance.GetActivityWithHttpInfo(chainName, activityId);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling ActivitiesApi.GetActivityWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | The name of chain | |
-| **activityId** | **Guid** | The id of activity | |
-
-### Return type
-
-[**GetActivityResult**](GetActivityResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **ListActivities**
-> ListActivitiesResult ListActivities (string chainName, string? contractAddress = null, string? tokenId = null, string? accountAddress = null, ActivityType? activityType = null, string? transactionHash = null, string? pageCursor = null, int? pageSize = null)
-
-List all activities
-
-List all activities
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListActivitiesExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new ActivitiesApi(config);
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var contractAddress = 0x8a90cab2b38dba80c64b7734e58ee1db38b8992e; // string? | The contract address of NFT or ERC20 Token (optional)
- var tokenId = 1; // string? | An `uint256` token id as string (optional)
- var accountAddress = 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3; // string? | The account address activity contains (optional)
- var activityType = new ActivityType?(); // ActivityType? | The activity type (optional)
- var transactionHash = 0x68d9eac5e3b3c3580404989a4030c948a78e1b07b2b5ea5688d8c38a6c61c93e; // string? | The transaction hash of activity (optional)
- var pageCursor = "pageCursor_example"; // string? | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- var pageSize = 100; // int? | Maximum number of items to return (optional) (default to 100)
-
- try
- {
- // List all activities
- ListActivitiesResult result = apiInstance.ListActivities(chainName, contractAddress, tokenId, accountAddress, activityType, transactionHash, pageCursor, pageSize);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling ActivitiesApi.ListActivities: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListActivitiesWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // List all activities
- ApiResponse response = apiInstance.ListActivitiesWithHttpInfo(chainName, contractAddress, tokenId, accountAddress, activityType, transactionHash, pageCursor, pageSize);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling ActivitiesApi.ListActivitiesWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | The name of chain | |
-| **contractAddress** | **string?** | The contract address of NFT or ERC20 Token | [optional] |
-| **tokenId** | **string?** | An `uint256` token id as string | [optional] |
-| **accountAddress** | **string?** | The account address activity contains | [optional] |
-| **activityType** | [**ActivityType?**](ActivityType?.md) | The activity type | [optional] |
-| **transactionHash** | **string?** | The transaction hash of activity | [optional] |
-| **pageCursor** | **string?** | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-| **pageSize** | **int?** | Maximum number of items to return | [optional] [default to 100] |
-
-### Return type
-
-[**ListActivitiesResult**](ListActivitiesResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **ListActivityHistory**
-> ListActivitiesResult ListActivityHistory (string chainName, DateTime fromUpdatedAt, DateTime? toUpdatedAt = null, string? contractAddress = null, ActivityType? activityType = null, string? pageCursor = null, int? pageSize = null)
-
-List history of activities
-
-List activities sorted by updated_at timestamp ascending, useful for time based data replication
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListActivityHistoryExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new ActivitiesApi(config);
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var fromUpdatedAt = 2022-08-16T17:43:26.991388Z; // DateTime | From indexed at including given date
- var toUpdatedAt = 2022-08-16T17:43:26.991388Z; // DateTime? | To indexed at including given date (optional)
- var contractAddress = 0x8a90cab2b38dba80c64b7734e58ee1db38b8992e; // string? | The contract address of the collection (optional)
- var activityType = new ActivityType?(); // ActivityType? | The activity type (optional)
- var pageCursor = "pageCursor_example"; // string? | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- var pageSize = 100; // int? | Maximum number of items to return (optional) (default to 100)
-
- try
- {
- // List history of activities
- ListActivitiesResult result = apiInstance.ListActivityHistory(chainName, fromUpdatedAt, toUpdatedAt, contractAddress, activityType, pageCursor, pageSize);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling ActivitiesApi.ListActivityHistory: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListActivityHistoryWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // List history of activities
- ApiResponse response = apiInstance.ListActivityHistoryWithHttpInfo(chainName, fromUpdatedAt, toUpdatedAt, contractAddress, activityType, pageCursor, pageSize);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling ActivitiesApi.ListActivityHistoryWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | The name of chain | |
-| **fromUpdatedAt** | **DateTime** | From indexed at including given date | |
-| **toUpdatedAt** | **DateTime?** | To indexed at including given date | [optional] |
-| **contractAddress** | **string?** | The contract address of the collection | [optional] |
-| **activityType** | [**ActivityType?**](ActivityType?.md) | The activity type | [optional] |
-| **pageCursor** | **string?** | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-| **pageSize** | **int?** | Maximum number of items to return | [optional] [default to 100] |
-
-### Return type
-
-[**ListActivitiesResult**](ListActivitiesResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Activity.md b/src/Packages/ZkEvmApi/Documentation~/Activity.md
deleted file mode 100644
index e8e298146..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Activity.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Activity
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **Guid** | Activity id in UUIDv4 format |
-**Chain** | [**Chain**](Chain.md) | |
-**Type** | **ActivityType** | |
-**Details** | [**ActivityDetails**](ActivityDetails.md) | |
-**UpdatedAt** | **DateTime** | The time activity was updated at |
-**IndexedAt** | **DateTime** | The time activity was indexed |
-**BlockchainMetadata** | [**BlockchainMetadata**](BlockchainMetadata.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ActivityAsset.md b/src/Packages/ZkEvmApi/Documentation~/ActivityAsset.md
deleted file mode 100644
index 768f231bf..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ActivityAsset.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ActivityAsset
-The contract and asset details for this activity
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**ContractType** | **TokenContractType** | |
-**ContractAddress** | **string** | The contract address |
-**TokenId** | **string** | An `uint256` token id as string |
-**Amount** | **string** | (deprecated - will never be filled, use amount on Activity instead) The amount of tokens exchanged |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ActivityDetails.md b/src/Packages/ZkEvmApi/Documentation~/ActivityDetails.md
deleted file mode 100644
index 3d1d92bc8..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ActivityDetails.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ActivityDetails
-The activity details
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**To** | **string** | The account address the asset was deposited to |
-**Amount** | **string** | The amount of assets withdrawn |
-**Asset** | [**ActivityAsset**](ActivityAsset.md) | |
-**From** | **string** | The account address the asset was withdrawn from |
-**OrderId** | **string** | The id of order |
-**Payment** | [**SalePayment**](SalePayment.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ActivityNFT.md b/src/Packages/ZkEvmApi/Documentation~/ActivityNFT.md
deleted file mode 100644
index 59311d10a..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ActivityNFT.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ActivityNFT
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**ContractType** | **NFTContractType** | |
-**ContractAddress** | **string** | The token contract address |
-**TokenId** | **string** | An `uint256` token id as string |
-**Amount** | **string** | (deprecated - will never be filled, use amount on Activity instead) The amount of tokens exchanged |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ActivityNativeToken.md b/src/Packages/ZkEvmApi/Documentation~/ActivityNativeToken.md
deleted file mode 100644
index 7d1c4f272..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ActivityNativeToken.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ActivityNativeToken
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Symbol** | **string** | The token symbol |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ActivityToken.md b/src/Packages/ZkEvmApi/Documentation~/ActivityToken.md
deleted file mode 100644
index 110ffc15c..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ActivityToken.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ActivityToken
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**ContractType** | **TokenContractType** | |
-**ContractAddress** | **string** | The contract address |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ActivityType.md b/src/Packages/ZkEvmApi/Documentation~/ActivityType.md
deleted file mode 100644
index 7af61a580..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ActivityType.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ActivityType
-The activity type
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/AssetCollectionItem.md b/src/Packages/ZkEvmApi/Documentation~/AssetCollectionItem.md
deleted file mode 100644
index 5547e6233..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/AssetCollectionItem.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.AssetCollectionItem
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Type** | **string** | Token type user is offering, which in this case is ERC721 |
-**ContractAddress** | **string** | Address of ERC1155 collection |
-**Amount** | **string** | A string representing the price at which the user is willing to sell the token. This value is provided in the smallest unit of the token (e.g., wei for Ethereum). |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/AssetVerificationStatus.md b/src/Packages/ZkEvmApi/Documentation~/AssetVerificationStatus.md
deleted file mode 100644
index b97f9b2b6..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/AssetVerificationStatus.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.AssetVerificationStatus
-The verification status for a given contract
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/BasicAPIError.md b/src/Packages/ZkEvmApi/Documentation~/BasicAPIError.md
deleted file mode 100644
index 7424a1955..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/BasicAPIError.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.BasicAPIError
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Message** | **string** | Error Message |
-**Link** | **string** | Link to IMX documentation that can help resolve this error |
-**TraceId** | **string** | Trace ID of the initial request |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Bid.md b/src/Packages/ZkEvmApi/Documentation~/Bid.md
deleted file mode 100644
index f86d08d7e..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Bid.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Bid
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**BidId** | **string** | Global Order identifier |
-**PriceDetails** | [**MarketPriceDetails**](MarketPriceDetails.md) | |
-**TokenId** | **string** | Token ID. Null for collection bids that can be fulfilled by any asset in the collection |
-**ContractAddress** | **string** | ETH Address of collection that the asset belongs to |
-**Creator** | **string** | ETH Address of listing creator |
-**Amount** | **string** | Amount of token included in the listing |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/BidResult.md b/src/Packages/ZkEvmApi/Documentation~/BidResult.md
deleted file mode 100644
index 39698749c..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/BidResult.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.BidResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**Order**](Order.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/BlockchainMetadata.md b/src/Packages/ZkEvmApi/Documentation~/BlockchainMetadata.md
deleted file mode 100644
index 07e41ea74..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/BlockchainMetadata.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Immutable.Api.ZkEvm.Model.BlockchainMetadata
-The metadata related to blockchain transaction
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**TransactionHash** | **string** | The transaction hash of the activity |
-**BlockNumber** | **string** | EVM block number (uint64 as string) |
-**TransactionIndex** | **string** | Transaction index in a block (uint32 as string) |
-**LogIndex** | **string** | The log index of activity in a block (uint32 as string) |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Burn.md b/src/Packages/ZkEvmApi/Documentation~/Burn.md
deleted file mode 100644
index e9e131d17..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Burn.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Burn
-The burn activity details
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**From** | **string** | The account address the asset was transferred from |
-**Amount** | **string** | The amount of assets burnt |
-**Asset** | [**ActivityAsset**](ActivityAsset.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Call.md b/src/Packages/ZkEvmApi/Documentation~/Call.md
deleted file mode 100644
index 01b7f1567..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Call.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Call
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**TargetAddress** | **string** | An Ethereum address |
-**FunctionSignature** | **string** | The function signature |
-**FunctionArgs** | **List<string>** | The function arguments |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/CancelOrdersRequestBody.md b/src/Packages/ZkEvmApi/Documentation~/CancelOrdersRequestBody.md
deleted file mode 100644
index 93cbf50f1..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/CancelOrdersRequestBody.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.CancelOrdersRequestBody
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**AccountAddress** | **string** | Address of the user initiating the cancel request |
-**Orders** | **List<Guid>** | List of order ids proposed for cancellation |
-**Signature** | **string** | Signature generated by the user for the specific cancellation request |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/CancelOrdersResult.md b/src/Packages/ZkEvmApi/Documentation~/CancelOrdersResult.md
deleted file mode 100644
index 07b39d505..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/CancelOrdersResult.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.CancelOrdersResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**CancelOrdersResultData**](CancelOrdersResultData.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/CancelOrdersResultData.md b/src/Packages/ZkEvmApi/Documentation~/CancelOrdersResultData.md
deleted file mode 100644
index bad08be80..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/CancelOrdersResultData.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.CancelOrdersResultData
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**SuccessfulCancellations** | **List<string>** | Orders which were successfully cancelled |
-**PendingCancellations** | **List<string>** | Orders which are marked for cancellation but the cancellation cannot be guaranteed |
-**FailedCancellations** | [**List<FailedOrderCancellation>**](FailedOrderCancellation.md) | Orders which failed to be cancelled |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/CancelledOrderStatus.md b/src/Packages/ZkEvmApi/Documentation~/CancelledOrderStatus.md
deleted file mode 100644
index 867170de7..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/CancelledOrderStatus.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.CancelledOrderStatus
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Name** | **string** | The order status indicating a order is has been cancelled or about to be cancelled. |
-**Pending** | **bool** | Whether the cancellation of the order is pending |
-**CancellationType** | **string** | Whether the cancellation was done on-chain or off-chain or as a result of an underfunded account |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Chain.md b/src/Packages/ZkEvmApi/Documentation~/Chain.md
deleted file mode 100644
index a805321ac..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Chain.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Chain
-The chain details
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **string** | The id of chain |
-**Name** | **string** | The name of chain |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ChainWithDetails.md b/src/Packages/ZkEvmApi/Documentation~/ChainWithDetails.md
deleted file mode 100644
index ffeda6f97..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ChainWithDetails.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ChainWithDetails
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **string** | The id of chain |
-**Name** | **string** | The name of chain |
-**RpcUrl** | **string** | URL for RPC node |
-**OperatorAllowlistAddress** | **string** | The address of the Operator Allowlist - https://docs.immutable.com/products/zkevm/minting/royalties/allowlist-spec/ |
-**MinterAddress** | **string** | The address of the minter used in the Minting API - https://docs.immutable.com/products/zkEVM/minting/minting-api#minting-api-prerequisites |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ChainsApi.md b/src/Packages/ZkEvmApi/Documentation~/ChainsApi.md
deleted file mode 100644
index 7195be4ed..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ChainsApi.md
+++ /dev/null
@@ -1,104 +0,0 @@
-# Immutable.Api.ZkEvm.Api.ChainsApi
-
-All URIs are relative to *https://api.sandbox.immutable.com*
-
-| Method | HTTP request | Description |
-|--------|--------------|-------------|
-| [**ListChains**](ChainsApi.md#listchains) | **GET** /v1/chains | List supported chains |
-
-
-# **ListChains**
-> ListChainsResult ListChains (string? pageCursor = null, int? pageSize = null)
-
-List supported chains
-
-List supported chains
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListChainsExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new ChainsApi(config);
- var pageCursor = "pageCursor_example"; // string? | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- var pageSize = 100; // int? | Maximum number of items to return (optional) (default to 100)
-
- try
- {
- // List supported chains
- ListChainsResult result = apiInstance.ListChains(pageCursor, pageSize);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling ChainsApi.ListChains: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListChainsWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // List supported chains
- ApiResponse response = apiInstance.ListChainsWithHttpInfo(pageCursor, pageSize);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling ChainsApi.ListChainsWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **pageCursor** | **string?** | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-| **pageSize** | **int?** | Maximum number of items to return | [optional] [default to 100] |
-
-### Return type
-
-[**ListChainsResult**](ListChainsResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Collection.md b/src/Packages/ZkEvmApi/Documentation~/Collection.md
deleted file mode 100644
index ccc60d236..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Collection.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Collection
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Chain** | [**Chain**](Chain.md) | |
-**Name** | **string** | The name of the collection |
-**Symbol** | **string** | The symbol of contract |
-**ContractType** | **CollectionContractType** | |
-**ContractAddress** | **string** | The address of the contract |
-**Description** | **string** | The description of collection |
-**Image** | **string** | The url of the collection image |
-**ExternalLink** | **string** | The url of external link |
-**ContractUri** | **string** | The uri for the metadata of the collection | [optional]
-**BaseUri** | **string** | The metadata uri for nft |
-**VerificationStatus** | **AssetVerificationStatus** | |
-**IndexedAt** | **DateTime** | When the collection was first indexed |
-**UpdatedAt** | **DateTime** | When the collection was last updated |
-**MetadataSyncedAt** | **DateTime?** | When the collection metadata was last synced |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/CollectionBidResult.md b/src/Packages/ZkEvmApi/Documentation~/CollectionBidResult.md
deleted file mode 100644
index dcc640647..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/CollectionBidResult.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.CollectionBidResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**Order**](Order.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/CollectionContractType.md b/src/Packages/ZkEvmApi/Documentation~/CollectionContractType.md
deleted file mode 100644
index cd6c3b21e..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/CollectionContractType.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.CollectionContractType
-The collection contract type
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/CollectionMetadata.md b/src/Packages/ZkEvmApi/Documentation~/CollectionMetadata.md
deleted file mode 100644
index fc825fe54..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/CollectionMetadata.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# Immutable.Api.ZkEvm.Model.CollectionMetadata
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Name** | **string** | The name of the collection |
-**Symbol** | **string** | The symbol of contract |
-**Description** | **string** | The description of collection |
-**Image** | **string** | The url of the collection image |
-**ExternalLink** | **string** | The url of external link |
-**ContractUri** | **string** | The uri for the metadata of the collection |
-**BaseUri** | **string** | The metadata uri for nft |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/CollectionsApi.md b/src/Packages/ZkEvmApi/Documentation~/CollectionsApi.md
deleted file mode 100644
index 50cf1954a..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/CollectionsApi.md
+++ /dev/null
@@ -1,526 +0,0 @@
-# Immutable.Api.ZkEvm.Api.CollectionsApi
-
-All URIs are relative to *https://api.sandbox.immutable.com*
-
-| Method | HTTP request | Description |
-|--------|--------------|-------------|
-| [**GetCollection**](CollectionsApi.md#getcollection) | **GET** /v1/chains/{chain_name}/collections/{contract_address} | Get collection by contract address |
-| [**ListCollections**](CollectionsApi.md#listcollections) | **GET** /v1/chains/{chain_name}/collections | List all collections |
-| [**ListCollectionsByNFTOwner**](CollectionsApi.md#listcollectionsbynftowner) | **GET** /v1/chains/{chain_name}/accounts/{account_address}/collections | List collections by NFT owner |
-| [**RefreshCollectionMetadata**](CollectionsApi.md#refreshcollectionmetadata) | **POST** /v1/chains/{chain_name}/collections/{contract_address}/refresh-metadata | Refresh collection metadata |
-| [**RefreshCollectionMetadataInternal**](CollectionsApi.md#refreshcollectionmetadatainternal) | **POST** /v1/internal/chains/{chain_name}/environment/{environment}/collections/{contract_address}/refresh-metadata | Refresh collection metadata internal |
-
-
-# **GetCollection**
-> GetCollectionResult GetCollection (string contractAddress, string chainName)
-
-Get collection by contract address
-
-Get collection by contract address
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class GetCollectionExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new CollectionsApi(config);
- var contractAddress = 0x8a90cab2b38dba80c64b7734e58ee1db38b8992e; // string | The address contract
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
-
- try
- {
- // Get collection by contract address
- GetCollectionResult result = apiInstance.GetCollection(contractAddress, chainName);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling CollectionsApi.GetCollection: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the GetCollectionWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Get collection by contract address
- ApiResponse response = apiInstance.GetCollectionWithHttpInfo(contractAddress, chainName);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling CollectionsApi.GetCollectionWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **contractAddress** | **string** | The address contract | |
-| **chainName** | **string** | The name of chain | |
-
-### Return type
-
-[**GetCollectionResult**](GetCollectionResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **ListCollections**
-> ListCollectionsResult ListCollections (string chainName, List? contractAddress = null, List? verificationStatus = null, DateTime? fromUpdatedAt = null, string? pageCursor = null, int? pageSize = null)
-
-List all collections
-
-List all collections
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListCollectionsExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new CollectionsApi(config);
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var contractAddress = new List?(); // List? | List of contract addresses to filter by (optional)
- var verificationStatus = new List?(); // List? | List of verification status to filter by (optional)
- var fromUpdatedAt = 2022-08-16T17:43:26.991388Z; // DateTime? | Datetime to use as the oldest updated timestamp (optional)
- var pageCursor = "pageCursor_example"; // string? | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- var pageSize = 100; // int? | Maximum number of items to return (optional) (default to 100)
-
- try
- {
- // List all collections
- ListCollectionsResult result = apiInstance.ListCollections(chainName, contractAddress, verificationStatus, fromUpdatedAt, pageCursor, pageSize);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling CollectionsApi.ListCollections: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListCollectionsWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // List all collections
- ApiResponse response = apiInstance.ListCollectionsWithHttpInfo(chainName, contractAddress, verificationStatus, fromUpdatedAt, pageCursor, pageSize);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling CollectionsApi.ListCollectionsWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | The name of chain | |
-| **contractAddress** | [**List<string>?**](string.md) | List of contract addresses to filter by | [optional] |
-| **verificationStatus** | [**List<AssetVerificationStatus>?**](AssetVerificationStatus.md) | List of verification status to filter by | [optional] |
-| **fromUpdatedAt** | **DateTime?** | Datetime to use as the oldest updated timestamp | [optional] |
-| **pageCursor** | **string?** | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-| **pageSize** | **int?** | Maximum number of items to return | [optional] [default to 100] |
-
-### Return type
-
-[**ListCollectionsResult**](ListCollectionsResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **ListCollectionsByNFTOwner**
-> ListCollectionsResult ListCollectionsByNFTOwner (string accountAddress, string chainName, string? pageCursor = null, int? pageSize = null)
-
-List collections by NFT owner
-
-List collections by NFT owner account address
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListCollectionsByNFTOwnerExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new CollectionsApi(config);
- var accountAddress = 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3; // string | Account address
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var pageCursor = "pageCursor_example"; // string? | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- var pageSize = 100; // int? | Maximum number of items to return (optional) (default to 100)
-
- try
- {
- // List collections by NFT owner
- ListCollectionsResult result = apiInstance.ListCollectionsByNFTOwner(accountAddress, chainName, pageCursor, pageSize);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling CollectionsApi.ListCollectionsByNFTOwner: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListCollectionsByNFTOwnerWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // List collections by NFT owner
- ApiResponse response = apiInstance.ListCollectionsByNFTOwnerWithHttpInfo(accountAddress, chainName, pageCursor, pageSize);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling CollectionsApi.ListCollectionsByNFTOwnerWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **accountAddress** | **string** | Account address | |
-| **chainName** | **string** | The name of chain | |
-| **pageCursor** | **string?** | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-| **pageSize** | **int?** | Maximum number of items to return | [optional] [default to 100] |
-
-### Return type
-
-[**ListCollectionsResult**](ListCollectionsResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **RefreshCollectionMetadata**
-> RefreshCollectionMetadataResult RefreshCollectionMetadata (string contractAddress, string chainName, RefreshCollectionMetadataRequest refreshCollectionMetadataRequest)
-
-Refresh collection metadata
-
-Refresh collection metadata
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class RefreshCollectionMetadataExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- // Configure Bearer token for authorization: BearerAuthWithClient
- config.AccessToken = "YOUR_BEARER_TOKEN";
- // Configure API key authorization: ImmutableApiKey
- config.AddApiKey("x-immutable-api-key", "YOUR_API_KEY");
- // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
- // config.AddApiKeyPrefix("x-immutable-api-key", "Bearer");
- // Configure Bearer token for authorization: BearerAuth
- config.AccessToken = "YOUR_BEARER_TOKEN";
-
- var apiInstance = new CollectionsApi(config);
- var contractAddress = 0x8a90cab2b38dba80c64b7734e58ee1db38b8992e; // string | The address contract
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var refreshCollectionMetadataRequest = new RefreshCollectionMetadataRequest(); // RefreshCollectionMetadataRequest | The request body
-
- try
- {
- // Refresh collection metadata
- RefreshCollectionMetadataResult result = apiInstance.RefreshCollectionMetadata(contractAddress, chainName, refreshCollectionMetadataRequest);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling CollectionsApi.RefreshCollectionMetadata: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the RefreshCollectionMetadataWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Refresh collection metadata
- ApiResponse response = apiInstance.RefreshCollectionMetadataWithHttpInfo(contractAddress, chainName, refreshCollectionMetadataRequest);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling CollectionsApi.RefreshCollectionMetadataWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **contractAddress** | **string** | The address contract | |
-| **chainName** | **string** | The name of chain | |
-| **refreshCollectionMetadataRequest** | [**RefreshCollectionMetadataRequest**](RefreshCollectionMetadataRequest.md) | The request body | |
-
-### Return type
-
-[**RefreshCollectionMetadataResult**](RefreshCollectionMetadataResult.md)
-
-### Authorization
-
-[BearerAuthWithClient](../README.md#BearerAuthWithClient), [ImmutableApiKey](../README.md#ImmutableApiKey), [BearerAuth](../README.md#BearerAuth)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **401** | Unauthorised Request (401) | - |
-| **403** | Forbidden Request (403) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **RefreshCollectionMetadataInternal**
-> RefreshCollectionMetadataResult RefreshCollectionMetadataInternal (string contractAddress, string chainName, string environment, RefreshCollectionMetadataRequest refreshCollectionMetadataRequest)
-
-Refresh collection metadata internal
-
-Refresh collection metadata internal
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class RefreshCollectionMetadataInternalExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- // Configure Bearer token for authorization: BearerAuthWithClient
- config.AccessToken = "YOUR_BEARER_TOKEN";
-
- var apiInstance = new CollectionsApi(config);
- var contractAddress = 0x8a90cab2b38dba80c64b7734e58ee1db38b8992e; // string | The address contract
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var environment = "environment_example"; // string | The environment of the collection
- var refreshCollectionMetadataRequest = new RefreshCollectionMetadataRequest(); // RefreshCollectionMetadataRequest | The request body
-
- try
- {
- // Refresh collection metadata internal
- RefreshCollectionMetadataResult result = apiInstance.RefreshCollectionMetadataInternal(contractAddress, chainName, environment, refreshCollectionMetadataRequest);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling CollectionsApi.RefreshCollectionMetadataInternal: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the RefreshCollectionMetadataInternalWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Refresh collection metadata internal
- ApiResponse response = apiInstance.RefreshCollectionMetadataInternalWithHttpInfo(contractAddress, chainName, environment, refreshCollectionMetadataRequest);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling CollectionsApi.RefreshCollectionMetadataInternalWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **contractAddress** | **string** | The address contract | |
-| **chainName** | **string** | The name of chain | |
-| **environment** | **string** | The environment of the collection | |
-| **refreshCollectionMetadataRequest** | [**RefreshCollectionMetadataRequest**](RefreshCollectionMetadataRequest.md) | The request body | |
-
-### Return type
-
-[**RefreshCollectionMetadataResult**](RefreshCollectionMetadataResult.md)
-
-### Authorization
-
-[BearerAuthWithClient](../README.md#BearerAuthWithClient)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **401** | Unauthorised Request (401) | - |
-| **403** | Forbidden Request (403) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/CraftingApi.md b/src/Packages/ZkEvmApi/Documentation~/CraftingApi.md
deleted file mode 100644
index 2ce960d6c..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/CraftingApi.md
+++ /dev/null
@@ -1,111 +0,0 @@
-# Immutable.Api.ZkEvm.Api.CraftingApi
-
-All URIs are relative to *https://api.sandbox.immutable.com*
-
-| Method | HTTP request | Description |
-|--------|--------------|-------------|
-| [**SignCraftingPayload**](CraftingApi.md#signcraftingpayload) | **POST** /v1/chains/{chain_name}/crafting/sign | Sign a crafting payload |
-
-
-# **SignCraftingPayload**
-> SignCraftingResult SignCraftingPayload (string chainName, SignCraftingRequest signCraftingRequest)
-
-Sign a crafting payload
-
-Sign a crafting payload
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class SignCraftingPayloadExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- // Configure API key authorization: ImmutableApiKey
- config.AddApiKey("x-immutable-api-key", "YOUR_API_KEY");
- // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
- // config.AddApiKeyPrefix("x-immutable-api-key", "Bearer");
-
- var apiInstance = new CraftingApi(config);
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var signCraftingRequest = new SignCraftingRequest(); // SignCraftingRequest | The request body
-
- try
- {
- // Sign a crafting payload
- SignCraftingResult result = apiInstance.SignCraftingPayload(chainName, signCraftingRequest);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling CraftingApi.SignCraftingPayload: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the SignCraftingPayloadWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Sign a crafting payload
- ApiResponse response = apiInstance.SignCraftingPayloadWithHttpInfo(chainName, signCraftingRequest);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling CraftingApi.SignCraftingPayloadWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | The name of chain | |
-| **signCraftingRequest** | [**SignCraftingRequest**](SignCraftingRequest.md) | The request body | |
-
-### Return type
-
-[**SignCraftingResult**](SignCraftingResult.md)
-
-### Authorization
-
-[ImmutableApiKey](../README.md#ImmutableApiKey)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **401** | Unauthorised Request (401) | - |
-| **403** | Forbidden Request (403) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/CreateBidRequestBody.md b/src/Packages/ZkEvmApi/Documentation~/CreateBidRequestBody.md
deleted file mode 100644
index 085abb523..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/CreateBidRequestBody.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# Immutable.Api.ZkEvm.Model.CreateBidRequestBody
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**AccountAddress** | **string** | |
-**OrderHash** | **string** | |
-**Buy** | [**List<Item>**](Item.md) | Buy item for bid should either be ERC721 or ERC1155 item |
-**Fees** | [**List<Fee>**](Fee.md) | Buy fees should only include maker marketplace fees and should be no more than two entries as more entires will incur more gas. It is best practice to have this as few as possible. |
-**EndAt** | **DateTime** | Time after which the Order is considered expired |
-**ProtocolData** | [**ProtocolData**](ProtocolData.md) | |
-**Salt** | **string** | A random value added to the create Order request |
-**Sell** | [**List<ERC20Item>**](ERC20Item.md) | Sell item for bid should be an ERC20 item |
-**Signature** | **string** | Digital signature generated by the user for the specific Order |
-**StartAt** | **DateTime** | Time after which Order is considered active |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/CreateCollectionBidRequestBody.md b/src/Packages/ZkEvmApi/Documentation~/CreateCollectionBidRequestBody.md
deleted file mode 100644
index cd121e293..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/CreateCollectionBidRequestBody.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# Immutable.Api.ZkEvm.Model.CreateCollectionBidRequestBody
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**AccountAddress** | **string** | |
-**OrderHash** | **string** | |
-**Buy** | [**List<AssetCollectionItem>**](AssetCollectionItem.md) | Buy item for collection bid should either be ERC721 or ERC1155 collection item |
-**Fees** | [**List<Fee>**](Fee.md) | Buy fees should only include maker marketplace fees and should be no more than two entries as more entires will incur more gas. It is best practice to have this as few as possible. |
-**EndAt** | **DateTime** | Time after which the Order is considered expired |
-**ProtocolData** | [**ProtocolData**](ProtocolData.md) | |
-**Salt** | **string** | A random value added to the create Order request |
-**Sell** | [**List<ERC20Item>**](ERC20Item.md) | Sell item for collection bid should be an ERC20 item |
-**Signature** | **string** | Digital signature generated by the user for the specific Order |
-**StartAt** | **DateTime** | Time after which Order is considered active |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/CreateListingRequestBody.md b/src/Packages/ZkEvmApi/Documentation~/CreateListingRequestBody.md
deleted file mode 100644
index cb2dce059..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/CreateListingRequestBody.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# Immutable.Api.ZkEvm.Model.CreateListingRequestBody
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**AccountAddress** | **string** | |
-**OrderHash** | **string** | |
-**Buy** | [**List<Item>**](Item.md) | Buy item for listing should either be NATIVE or ERC20 item |
-**Fees** | [**List<Fee>**](Fee.md) | Buy fees should only include maker marketplace fees and should be no more than two entries as more entires will incur more gas. It is best practice to have this as few as possible. |
-**EndAt** | **DateTime** | Time after which the Order is considered expired |
-**ProtocolData** | [**ProtocolData**](ProtocolData.md) | |
-**Salt** | **string** | A random value added to the create Order request |
-**Sell** | [**List<Item>**](Item.md) | Sell item for listing should be an ERC721 item |
-**Signature** | **string** | Digital signature generated by the user for the specific Order |
-**StartAt** | **DateTime** | Time after which Order is considered active |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/CreateMintRequestRequest.md b/src/Packages/ZkEvmApi/Documentation~/CreateMintRequestRequest.md
deleted file mode 100644
index 9088cb2e6..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/CreateMintRequestRequest.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.CreateMintRequestRequest
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Assets** | [**List<MintAsset>**](MintAsset.md) | List of nft to be minted |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/CreateMintRequestResult.md b/src/Packages/ZkEvmApi/Documentation~/CreateMintRequestResult.md
deleted file mode 100644
index 81bc26a3f..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/CreateMintRequestResult.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Immutable.Api.ZkEvm.Model.CreateMintRequestResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**ImxMintRequestsLimit** | **string** | |
-**ImxMintRequestsLimitReset** | **string** | |
-**ImxRemainingMintRequests** | **string** | |
-**ImxMintRequestsRetryAfter** | **string** | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Deposit.md b/src/Packages/ZkEvmApi/Documentation~/Deposit.md
deleted file mode 100644
index 21d8de915..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Deposit.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Deposit
-The deposit activity details
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**To** | **string** | The account address the asset was deposited to |
-**Amount** | **string** | The deposited amount |
-**Asset** | [**ActivityAsset**](ActivityAsset.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ERC1155CollectionItem.md b/src/Packages/ZkEvmApi/Documentation~/ERC1155CollectionItem.md
deleted file mode 100644
index 7768e1e15..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ERC1155CollectionItem.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ERC1155CollectionItem
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Type** | **string** | Token type user is offering, which in this case is ERC1155 |
-**ContractAddress** | **string** | Address of ERC1155 collection |
-**Amount** | **string** | A string representing the price at which the user is willing to sell the token. This value is provided in the smallest unit of the token (e.g., wei for Ethereum). |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ERC1155Item.md b/src/Packages/ZkEvmApi/Documentation~/ERC1155Item.md
deleted file mode 100644
index b5a8fc10b..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ERC1155Item.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ERC1155Item
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Type** | **string** | Token type user is offering, which in this case is ERC1155 |
-**ContractAddress** | **string** | Address of ERC1155 token |
-**TokenId** | **string** | ID of ERC1155 token |
-**Amount** | **string** | A string representing the price at which the user is willing to sell the token. This value is provided in the smallest unit of the token (e.g., wei for Ethereum). |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ERC20Item.md b/src/Packages/ZkEvmApi/Documentation~/ERC20Item.md
deleted file mode 100644
index d3381026f..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ERC20Item.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ERC20Item
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Type** | **string** | Token type user is offering, which in this case is ERC20 |
-**ContractAddress** | **string** | Address of ERC20 token |
-**Amount** | **string** | A string representing the price at which the user is willing to sell the token. This value is provided in the smallest unit of the token (e.g., wei for Ethereum). |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ERC721CollectionItem.md b/src/Packages/ZkEvmApi/Documentation~/ERC721CollectionItem.md
deleted file mode 100644
index 4524a458e..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ERC721CollectionItem.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ERC721CollectionItem
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Type** | **string** | Token type user is offering, which in this case is ERC721 |
-**ContractAddress** | **string** | Address of ERC721 collection |
-**Amount** | **string** | A string representing the price at which the user is willing to sell the token. This value is provided in the smallest unit of the token (e.g., wei for Ethereum). |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ERC721Item.md b/src/Packages/ZkEvmApi/Documentation~/ERC721Item.md
deleted file mode 100644
index 019f8e110..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ERC721Item.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ERC721Item
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Type** | **string** | Token type user is offering, which in this case is ERC721 |
-**ContractAddress** | **string** | Address of ERC721 token |
-**TokenId** | **string** | ID of ERC721 token |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ExpiredOrderStatus.md b/src/Packages/ZkEvmApi/Documentation~/ExpiredOrderStatus.md
deleted file mode 100644
index d433e253b..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ExpiredOrderStatus.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ExpiredOrderStatus
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Name** | **string** | A terminal order status indicating that an order cannot be fulfilled due to expiry. |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FailedOrderCancellation.md b/src/Packages/ZkEvmApi/Documentation~/FailedOrderCancellation.md
deleted file mode 100644
index e2a28a6e5..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FailedOrderCancellation.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FailedOrderCancellation
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Order** | **string** | ID of the order which failed to be cancelled |
-**ReasonCode** | **string** | Reason code indicating why the order failed to be cancelled |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Fee.md b/src/Packages/ZkEvmApi/Documentation~/Fee.md
deleted file mode 100644
index fdf5e0f6b..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Fee.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Fee
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Amount** | **string** | Fee payable to recipient upon settlement |
-**Type** | **string** | Fee type |
-**RecipientAddress** | **string** | Wallet address of fee recipient |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FeedItemBase.md b/src/Packages/ZkEvmApi/Documentation~/FeedItemBase.md
deleted file mode 100644
index 452962cb9..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FeedItemBase.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FeedItemBase
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **string** | Feed item ID |
-**Name** | **string** | Feed item name |
-**QuestId** | **string** | Quest ID |
-**Priority** | **int** | Feed item priority |
-**GemsEarnable** | **int** | Amount of gems earnable when user completes the quest |
-**Bypass** | **bool** | If the quest is bypassed, the user will not be able to see it on the feed | [optional]
-**DayZero** | **bool** | If the quest is a day0 quest | [optional]
-**GameId** | **Guid** | Game ID | [optional]
-**GameName** | **string** | Game name | [optional]
-**QuestCompletedPopupText** | **string** | Text to display when the quest is completed in an onboarding experience | [optional]
-**Tags** | **List<string>** | The tags for the feed item | [optional]
-**ControlTags** | **List<string>** | Some specific tags for controlling feed items | [optional]
-**Categories** | **List<string>** | The categories for the feed item | [optional]
-**OnboardingExperience** | **string** | The onboarding experience for the feed item | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FeedItemBonusGems.md b/src/Packages/ZkEvmApi/Documentation~/FeedItemBonusGems.md
deleted file mode 100644
index a1bb573ba..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FeedItemBonusGems.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FeedItemBonusGems
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **string** | Feed item ID |
-**Name** | **string** | Feed item name |
-**QuestId** | **string** | Quest ID |
-**Priority** | **int** | Feed item priority |
-**GemsEarnable** | **int** | Amount of gems earnable when user completes the quest |
-**Bypass** | **bool** | If the quest is bypassed, the user will not be able to see it on the feed | [optional]
-**DayZero** | **bool** | If the quest is a day0 quest | [optional]
-**GameId** | **Guid** | Game ID | [optional]
-**GameName** | **string** | Game name | [optional]
-**QuestCompletedPopupText** | **string** | Text to display when the quest is completed in an onboarding experience | [optional]
-**Tags** | **List<string>** | The tags for the feed item | [optional]
-**ControlTags** | **List<string>** | Some specific tags for controlling feed items | [optional]
-**Categories** | **List<string>** | The categories for the feed item | [optional]
-**OnboardingExperience** | **string** | The onboarding experience for the feed item | [optional]
-**Type** | **string** | Feed item type |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FeedItemCTA.md b/src/Packages/ZkEvmApi/Documentation~/FeedItemCTA.md
deleted file mode 100644
index 1c178271c..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FeedItemCTA.md
+++ /dev/null
@@ -1,28 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FeedItemCTA
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **string** | Feed item ID |
-**Name** | **string** | Feed item name |
-**QuestId** | **string** | Quest ID |
-**Priority** | **int** | Feed item priority |
-**GemsEarnable** | **int** | Amount of gems earnable when user completes the quest |
-**Bypass** | **bool** | If the quest is bypassed, the user will not be able to see it on the feed | [optional]
-**DayZero** | **bool** | If the quest is a day0 quest | [optional]
-**GameId** | **Guid** | Game ID | [optional]
-**GameName** | **string** | Game name | [optional]
-**QuestCompletedPopupText** | **string** | Text to display when the quest is completed in an onboarding experience | [optional]
-**Tags** | **List<string>** | The tags for the feed item | [optional]
-**ControlTags** | **List<string>** | Some specific tags for controlling feed items | [optional]
-**Categories** | **List<string>** | The categories for the feed item | [optional]
-**OnboardingExperience** | **string** | The onboarding experience for the feed item | [optional]
-**Type** | **string** | Feed item type |
-**Label** | **string** | The label for the CTA button |
-**Description** | **string** | The description for the CTA button |
-**Url** | **string** | The URL for the CTA button |
-**Image** | **string** | The image for the CTA background |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FeedItemDailyGems.md b/src/Packages/ZkEvmApi/Documentation~/FeedItemDailyGems.md
deleted file mode 100644
index 5841f2b68..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FeedItemDailyGems.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FeedItemDailyGems
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **string** | Feed item ID |
-**Name** | **string** | Feed item name |
-**QuestId** | **string** | Quest ID |
-**Priority** | **int** | Feed item priority |
-**GemsEarnable** | **int** | Amount of gems earnable when user completes the quest |
-**Bypass** | **bool** | If the quest is bypassed, the user will not be able to see it on the feed | [optional]
-**DayZero** | **bool** | If the quest is a day0 quest | [optional]
-**GameId** | **Guid** | Game ID | [optional]
-**GameName** | **string** | Game name | [optional]
-**QuestCompletedPopupText** | **string** | Text to display when the quest is completed in an onboarding experience | [optional]
-**Tags** | **List<string>** | The tags for the feed item | [optional]
-**ControlTags** | **List<string>** | Some specific tags for controlling feed items | [optional]
-**Categories** | **List<string>** | The categories for the feed item | [optional]
-**OnboardingExperience** | **string** | The onboarding experience for the feed item | [optional]
-**Type** | **string** | Feed item type |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FeedItemFollowGame.md b/src/Packages/ZkEvmApi/Documentation~/FeedItemFollowGame.md
deleted file mode 100644
index 566c4799f..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FeedItemFollowGame.md
+++ /dev/null
@@ -1,30 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FeedItemFollowGame
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **string** | Feed item ID |
-**Name** | **string** | Feed item name |
-**QuestId** | **string** | Quest ID |
-**Priority** | **int** | Feed item priority |
-**GemsEarnable** | **int** | Amount of gems earnable when user completes the quest |
-**Bypass** | **bool** | If the quest is bypassed, the user will not be able to see it on the feed | [optional]
-**DayZero** | **bool** | If the quest is a day0 quest | [optional]
-**GameId** | **Guid** | Game ID | [optional]
-**GameName** | **string** | Game name | [optional]
-**QuestCompletedPopupText** | **string** | Text to display when the quest is completed in an onboarding experience | [optional]
-**Tags** | **List<string>** | The tags for the feed item | [optional]
-**ControlTags** | **List<string>** | Some specific tags for controlling feed items | [optional]
-**Categories** | **List<string>** | The categories for the feed item | [optional]
-**OnboardingExperience** | **string** | The onboarding experience for the feed item | [optional]
-**Type** | **string** | Feed item type |
-**Image** | **string** | URL of the CTA image |
-**Label** | **string** | Label of the CTA button |
-**Description** | **string** | Description of the CTA button |
-**Logo** | **string** | URL of the quiz logo |
-**Title** | **string** | Title of the video |
-**SimilarGames** | **List<string>** | Similar games to display | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FeedItemLanding.md b/src/Packages/ZkEvmApi/Documentation~/FeedItemLanding.md
deleted file mode 100644
index cb0152fd5..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FeedItemLanding.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FeedItemLanding
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **string** | Feed item ID |
-**Name** | **string** | Feed item name |
-**QuestId** | **string** | Quest ID |
-**Priority** | **int** | Feed item priority |
-**GemsEarnable** | **int** | Amount of gems earnable when user completes the quest |
-**Bypass** | **bool** | If the quest is bypassed, the user will not be able to see it on the feed | [optional]
-**DayZero** | **bool** | If the quest is a day0 quest | [optional]
-**GameId** | **Guid** | Game ID | [optional]
-**GameName** | **string** | Game name | [optional]
-**QuestCompletedPopupText** | **string** | Text to display when the quest is completed in an onboarding experience | [optional]
-**Tags** | **List<string>** | The tags for the feed item | [optional]
-**ControlTags** | **List<string>** | Some specific tags for controlling feed items | [optional]
-**Categories** | **List<string>** | The categories for the feed item | [optional]
-**OnboardingExperience** | **string** | The onboarding experience for the feed item | [optional]
-**Type** | **string** | Feed item type |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FeedItemPinToHome.md b/src/Packages/ZkEvmApi/Documentation~/FeedItemPinToHome.md
deleted file mode 100644
index e2b03da5a..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FeedItemPinToHome.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FeedItemPinToHome
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **string** | Feed item ID |
-**Name** | **string** | Feed item name |
-**QuestId** | **string** | Quest ID |
-**Priority** | **int** | Feed item priority |
-**GemsEarnable** | **int** | Amount of gems earnable when user completes the quest |
-**Bypass** | **bool** | If the quest is bypassed, the user will not be able to see it on the feed | [optional]
-**DayZero** | **bool** | If the quest is a day0 quest | [optional]
-**GameId** | **Guid** | Game ID | [optional]
-**GameName** | **string** | Game name | [optional]
-**QuestCompletedPopupText** | **string** | Text to display when the quest is completed in an onboarding experience | [optional]
-**Tags** | **List<string>** | The tags for the feed item | [optional]
-**ControlTags** | **List<string>** | Some specific tags for controlling feed items | [optional]
-**Categories** | **List<string>** | The categories for the feed item | [optional]
-**OnboardingExperience** | **string** | The onboarding experience for the feed item | [optional]
-**Type** | **string** | Feed item type |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FeedItemQuiz.md b/src/Packages/ZkEvmApi/Documentation~/FeedItemQuiz.md
deleted file mode 100644
index f176bec8b..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FeedItemQuiz.md
+++ /dev/null
@@ -1,32 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FeedItemQuiz
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **string** | Feed item ID |
-**Name** | **string** | Feed item name |
-**QuestId** | **string** | Quest ID |
-**Priority** | **int** | Feed item priority |
-**GemsEarnable** | **int** | Amount of gems earnable when user completes the quest |
-**Bypass** | **bool** | If the quest is bypassed, the user will not be able to see it on the feed | [optional]
-**DayZero** | **bool** | If the quest is a day0 quest | [optional]
-**GameId** | **Guid** | Game ID | [optional]
-**GameName** | **string** | Game name | [optional]
-**QuestCompletedPopupText** | **string** | Text to display when the quest is completed in an onboarding experience | [optional]
-**Tags** | **List<string>** | The tags for the feed item | [optional]
-**ControlTags** | **List<string>** | Some specific tags for controlling feed items | [optional]
-**Categories** | **List<string>** | The categories for the feed item | [optional]
-**OnboardingExperience** | **string** | The onboarding experience for the feed item | [optional]
-**Type** | **string** | Feed item type |
-**HeaderVideoUrl** | **string** | URL of the quiz header video | [optional]
-**Logo** | **string** | URL of the quiz logo | [optional]
-**Question** | **string** | The quiz question |
-**Answers** | **List<string>** | Quiz answers to display |
-**CorrectAnswers** | **List<int>** | Quiz correct answers |
-**CorrectAnswerText** | **string** | The text to display when the user answers the quiz correctly | [optional]
-**HeaderInitialImage** | **string** | The initial image for the quiz header | [optional]
-**HeaderAnsweredImage** | **string** | The image to display when the user answers the quiz correctly | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FeedItemReferral.md b/src/Packages/ZkEvmApi/Documentation~/FeedItemReferral.md
deleted file mode 100644
index 8716164c0..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FeedItemReferral.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FeedItemReferral
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **string** | Feed item ID |
-**Name** | **string** | Feed item name |
-**QuestId** | **string** | Quest ID |
-**Priority** | **int** | Feed item priority |
-**GemsEarnable** | **int** | Amount of gems earnable when user completes the quest |
-**Bypass** | **bool** | If the quest is bypassed, the user will not be able to see it on the feed | [optional]
-**DayZero** | **bool** | If the quest is a day0 quest | [optional]
-**GameId** | **Guid** | Game ID | [optional]
-**GameName** | **string** | Game name | [optional]
-**QuestCompletedPopupText** | **string** | Text to display when the quest is completed in an onboarding experience | [optional]
-**Tags** | **List<string>** | The tags for the feed item | [optional]
-**ControlTags** | **List<string>** | Some specific tags for controlling feed items | [optional]
-**Categories** | **List<string>** | The categories for the feed item | [optional]
-**OnboardingExperience** | **string** | The onboarding experience for the feed item | [optional]
-**Type** | **string** | Feed item type |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FeedItemReward.md b/src/Packages/ZkEvmApi/Documentation~/FeedItemReward.md
deleted file mode 100644
index 70beaae2d..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FeedItemReward.md
+++ /dev/null
@@ -1,30 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FeedItemReward
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **string** | Feed item ID |
-**Name** | **string** | Feed item name |
-**QuestId** | **string** | Quest ID |
-**Priority** | **int** | Feed item priority |
-**GemsEarnable** | **int** | Amount of gems earnable when user completes the quest |
-**Bypass** | **bool** | If the quest is bypassed, the user will not be able to see it on the feed | [optional]
-**DayZero** | **bool** | If the quest is a day0 quest | [optional]
-**GameId** | **Guid** | Game ID | [optional]
-**GameName** | **string** | Game name | [optional]
-**QuestCompletedPopupText** | **string** | Text to display when the quest is completed in an onboarding experience | [optional]
-**Tags** | **List<string>** | The tags for the feed item | [optional]
-**ControlTags** | **List<string>** | Some specific tags for controlling feed items | [optional]
-**Categories** | **List<string>** | The categories for the feed item | [optional]
-**OnboardingExperience** | **string** | The onboarding experience for the feed item | [optional]
-**Type** | **string** | Feed item type |
-**Label** | **string** | The label for the CTA button |
-**Description** | **string** | The description for the CTA button |
-**Url** | **string** | The URL for the CTA button |
-**Image** | **string** | The image for the CTA background |
-**RedirectUrl** | **string** | The URL to redirect to when the user completes the sign in quest |
-**Background** | **string** | The background for the sign in quest |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FeedItemSignIn.md b/src/Packages/ZkEvmApi/Documentation~/FeedItemSignIn.md
deleted file mode 100644
index b2c36f046..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FeedItemSignIn.md
+++ /dev/null
@@ -1,30 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FeedItemSignIn
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **string** | Feed item ID |
-**Name** | **string** | Feed item name |
-**QuestId** | **string** | Quest ID |
-**Priority** | **int** | Feed item priority |
-**GemsEarnable** | **int** | Amount of gems earnable when user completes the quest |
-**Bypass** | **bool** | If the quest is bypassed, the user will not be able to see it on the feed | [optional]
-**DayZero** | **bool** | If the quest is a day0 quest | [optional]
-**GameId** | **Guid** | Game ID | [optional]
-**GameName** | **string** | Game name | [optional]
-**QuestCompletedPopupText** | **string** | Text to display when the quest is completed in an onboarding experience | [optional]
-**Tags** | **List<string>** | The tags for the feed item | [optional]
-**ControlTags** | **List<string>** | Some specific tags for controlling feed items | [optional]
-**Categories** | **List<string>** | The categories for the feed item | [optional]
-**OnboardingExperience** | **string** | The onboarding experience for the feed item | [optional]
-**Type** | **string** | Feed item type |
-**Label** | **string** | The label for the CTA button |
-**Description** | **string** | The description for the CTA button |
-**Url** | **string** | The URL for the CTA button |
-**Image** | **string** | The image for the CTA background |
-**RedirectUrl** | **string** | The URL to redirect to when the user completes the sign in quest |
-**Background** | **string** | The background for the sign in quest |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FeedItemSocialQuest.md b/src/Packages/ZkEvmApi/Documentation~/FeedItemSocialQuest.md
deleted file mode 100644
index df4c253f3..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FeedItemSocialQuest.md
+++ /dev/null
@@ -1,31 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FeedItemSocialQuest
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **string** | Feed item ID |
-**Name** | **string** | Feed item name |
-**QuestId** | **string** | Quest ID |
-**Priority** | **int** | Feed item priority |
-**GemsEarnable** | **int** | Amount of gems earnable when user completes the quest |
-**Bypass** | **bool** | If the quest is bypassed, the user will not be able to see it on the feed | [optional]
-**DayZero** | **bool** | If the quest is a day0 quest | [optional]
-**GameId** | **Guid** | Game ID | [optional]
-**GameName** | **string** | Game name | [optional]
-**QuestCompletedPopupText** | **string** | Text to display when the quest is completed in an onboarding experience | [optional]
-**Tags** | **List<string>** | The tags for the feed item | [optional]
-**ControlTags** | **List<string>** | Some specific tags for controlling feed items | [optional]
-**Categories** | **List<string>** | The categories for the feed item | [optional]
-**OnboardingExperience** | **string** | The onboarding experience for the feed item | [optional]
-**Type** | **string** | Feed item type |
-**Title** | **string** | Title of the social quest |
-**Subtitle** | **string** | Title of the social quest |
-**Label** | **string** | The label for the CTA button |
-**Description** | **string** | The description for the CTA button |
-**Url** | **string** | The URL for the CTA button |
-**Logo** | **string** | URL of the logo |
-**PlatformName** | **string** | The name of the platform social quest belongs to |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FeedItemVideo.md b/src/Packages/ZkEvmApi/Documentation~/FeedItemVideo.md
deleted file mode 100644
index 2ce1715f3..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FeedItemVideo.md
+++ /dev/null
@@ -1,26 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FeedItemVideo
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **string** | Feed item ID |
-**Name** | **string** | Feed item name |
-**QuestId** | **string** | Quest ID |
-**Priority** | **int** | Feed item priority |
-**GemsEarnable** | **int** | Amount of gems earnable when user completes the quest |
-**Bypass** | **bool** | If the quest is bypassed, the user will not be able to see it on the feed | [optional]
-**DayZero** | **bool** | If the quest is a day0 quest | [optional]
-**GameId** | **Guid** | Game ID | [optional]
-**GameName** | **string** | Game name | [optional]
-**QuestCompletedPopupText** | **string** | Text to display when the quest is completed in an onboarding experience | [optional]
-**Tags** | **List<string>** | The tags for the feed item | [optional]
-**ControlTags** | **List<string>** | Some specific tags for controlling feed items | [optional]
-**Categories** | **List<string>** | The categories for the feed item | [optional]
-**OnboardingExperience** | **string** | The onboarding experience for the feed item | [optional]
-**Type** | **string** | Feed item type |
-**Title** | **string** | Title of the video |
-**Url** | **string** | URL of the video |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FillStatus.md b/src/Packages/ZkEvmApi/Documentation~/FillStatus.md
deleted file mode 100644
index 91e666183..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FillStatus.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FillStatus
-The ratio of the order that has been filled, an order that has been fully filled will have the same numerator and denominator values.
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Numerator** | **string** | The numerator of the fill status |
-**Denominator** | **string** | The denominator of the fill status |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FilledOrderStatus.md b/src/Packages/ZkEvmApi/Documentation~/FilledOrderStatus.md
deleted file mode 100644
index 4fe96f055..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FilledOrderStatus.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FilledOrderStatus
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Name** | **string** | A terminal order status indicating that an order has been fulfilled. |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Filter.md b/src/Packages/ZkEvmApi/Documentation~/Filter.md
deleted file mode 100644
index 5f90a569c..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Filter.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Filter
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Name** | **string** | Name of trait |
-**Values** | [**List<FilterValue>**](FilterValue.md) | List of 100 most common values for this trait sorted by number of associated NFTs |
-**OmittedValuesCount** | **int** | Indicated how many more distinct values exist |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FilterResult.md b/src/Packages/ZkEvmApi/Documentation~/FilterResult.md
deleted file mode 100644
index 5501ad892..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FilterResult.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FilterResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Chain** | [**Chain**](Chain.md) | |
-**ContractAddress** | **string** | ETH Address of collection that the asset belongs to |
-**Filters** | [**List<Filter>**](Filter.md) | List of all filters and the most common values |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FilterValue.md b/src/Packages/ZkEvmApi/Documentation~/FilterValue.md
deleted file mode 100644
index 5ed3d1757..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FilterValue.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FilterValue
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Value** | **string** | |
-**NftCount** | **string** | Number of NFTs that have this trait. Uint256 as string |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FulfillableOrder.md b/src/Packages/ZkEvmApi/Documentation~/FulfillableOrder.md
deleted file mode 100644
index 750cc2efe..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FulfillableOrder.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FulfillableOrder
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Order** | [**Order**](Order.md) | |
-**TokenId** | **string** | Token ID for the ERC721 or ERC1155 token when fulfilling a collection order | [optional]
-**ExtraData** | **string** | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FulfillmentData200Response.md b/src/Packages/ZkEvmApi/Documentation~/FulfillmentData200Response.md
deleted file mode 100644
index a14257c9e..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FulfillmentData200Response.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FulfillmentData200Response
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**FulfillmentData200ResponseResult**](FulfillmentData200ResponseResult.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FulfillmentData200ResponseResult.md b/src/Packages/ZkEvmApi/Documentation~/FulfillmentData200ResponseResult.md
deleted file mode 100644
index b33eba5fc..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FulfillmentData200ResponseResult.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FulfillmentData200ResponseResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**FulfillableOrders** | [**List<FulfillableOrder>**](FulfillableOrder.md) | |
-**UnfulfillableOrders** | [**List<UnfulfillableOrder>**](UnfulfillableOrder.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/FulfillmentDataRequest.md b/src/Packages/ZkEvmApi/Documentation~/FulfillmentDataRequest.md
deleted file mode 100644
index a32f979f5..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/FulfillmentDataRequest.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Immutable.Api.ZkEvm.Model.FulfillmentDataRequest
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**OrderId** | **Guid** | |
-**TakerAddress** | **string** | Address of the intended account fulfilling the order |
-**Fees** | [**List<Fee>**](Fee.md) | |
-**TokenId** | **string** | Token ID for the ERC721 or ERC1155 token when fulfilling a collection order | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/GetActivityResult.md b/src/Packages/ZkEvmApi/Documentation~/GetActivityResult.md
deleted file mode 100644
index 2ad0bde4c..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/GetActivityResult.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.GetActivityResult
-Single activity
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**Activity**](Activity.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/GetCollectionResult.md b/src/Packages/ZkEvmApi/Documentation~/GetCollectionResult.md
deleted file mode 100644
index 8ca58b505..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/GetCollectionResult.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.GetCollectionResult
-Single Collection
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | **Collection** | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/GetLinkedAddressesRes.md b/src/Packages/ZkEvmApi/Documentation~/GetLinkedAddressesRes.md
deleted file mode 100644
index d66485f91..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/GetLinkedAddressesRes.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.GetLinkedAddressesRes
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**LinkedAddresses** | **List<string>** | The user's list of linked addresses |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/GetMetadataResult.md b/src/Packages/ZkEvmApi/Documentation~/GetMetadataResult.md
deleted file mode 100644
index 62a14a98d..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/GetMetadataResult.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.GetMetadataResult
-Single metadata
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**Metadata**](Metadata.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/GetMintRequestResult.md b/src/Packages/ZkEvmApi/Documentation~/GetMintRequestResult.md
deleted file mode 100644
index 65725b492..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/GetMintRequestResult.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# Immutable.Api.ZkEvm.Model.GetMintRequestResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Chain** | [**Chain**](Chain.md) | |
-**CollectionAddress** | **string** | The address of the contract |
-**ReferenceId** | **string** | The reference id of this mint request |
-**OwnerAddress** | **string** | The address of the owner of the NFT |
-**TokenId** | **string** | An `uint256` token id as string. Only available when the mint request succeeds |
-**Amount** | **string** | An `uint256` amount as string. Only relevant for mint requests on ERC1155 contracts | [optional]
-**ActivityId** | **Guid?** | The id of the mint activity associated with this mint request | [optional]
-**TransactionHash** | **string** | The transaction hash of the activity |
-**CreatedAt** | **DateTime** | When the mint request was created |
-**UpdatedAt** | **DateTime** | When the mint request was last updated |
-**Error** | [**MintRequestErrorMessage**](MintRequestErrorMessage.md) | |
-**Status** | **MintRequestStatus** | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/GetNFTResult.md b/src/Packages/ZkEvmApi/Documentation~/GetNFTResult.md
deleted file mode 100644
index 27bd16c91..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/GetNFTResult.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.GetNFTResult
-Single NFT
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**NFT**](NFT.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/GetTokenResult.md b/src/Packages/ZkEvmApi/Documentation~/GetTokenResult.md
deleted file mode 100644
index a4813b5e5..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/GetTokenResult.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.GetTokenResult
-Single Token
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**Token**](Token.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/InactiveOrderStatus.md b/src/Packages/ZkEvmApi/Documentation~/InactiveOrderStatus.md
deleted file mode 100644
index c8a5a6c21..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/InactiveOrderStatus.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.InactiveOrderStatus
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Name** | **string** | The order status that indicates an order cannot be fulfilled. |
-**SufficientApprovals** | **bool** | Whether the order offerer has sufficient approvals |
-**SufficientBalances** | **bool** | Whether the order offerer still has sufficient balance to complete the order |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Item.md b/src/Packages/ZkEvmApi/Documentation~/Item.md
deleted file mode 100644
index 89b582c44..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Item.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Item
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Type** | **string** | Token type user is offering, which in this case is the native IMX token |
-**Amount** | **string** | A string representing the price at which the user is willing to sell the token. This value is provided in the smallest unit of the token (e.g., wei for Ethereum). |
-**ContractAddress** | **string** | Address of ERC1155 collection |
-**TokenId** | **string** | ID of ERC1155 token |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/LastTrade.md b/src/Packages/ZkEvmApi/Documentation~/LastTrade.md
deleted file mode 100644
index 8d6bb0427..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/LastTrade.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# Immutable.Api.ZkEvm.Model.LastTrade
-Most recent trade
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**TradeId** | **Guid** | Trade ID |
-**ContractAddress** | **string** | ETH Address of collection that the asset belongs to |
-**TokenId** | **string** | Token id of the traded asset (uint256 as string) |
-**PriceDetails** | [**List<MarketPriceDetails>**](MarketPriceDetails.md) | Price details, list of payments involved in this trade |
-**Amount** | **string** | Amount of the trade (uint256 as string) |
-**CreatedAt** | **DateTime** | When the trade was created |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/LinkWalletV2Request.md b/src/Packages/ZkEvmApi/Documentation~/LinkWalletV2Request.md
deleted file mode 100644
index 594e246bf..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/LinkWalletV2Request.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Immutable.Api.ZkEvm.Model.LinkWalletV2Request
-Link wallet V2 request
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Type** | **string** | This should be the EIP-6963 rdns value, if you're unable to get the rdns value you can provide \"External\". If using WalletConnect then provide \"WalletConnect\". |
-**WalletAddress** | **string** | The address of the external wallet being linked to Passport |
-**Signature** | **string** | The EIP-712 signature |
-**Nonce** | **string** | A unique identifier for the signature |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ListActivitiesResult.md b/src/Packages/ZkEvmApi/Documentation~/ListActivitiesResult.md
deleted file mode 100644
index 1f1628d12..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ListActivitiesResult.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ListActivitiesResult
-List activities response
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**List<Activity>**](Activity.md) | List of activities |
-**Page** | [**Page**](Page.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ListBidsResult.md b/src/Packages/ZkEvmApi/Documentation~/ListBidsResult.md
deleted file mode 100644
index 9accd9915..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ListBidsResult.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ListBidsResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Page** | [**Page**](Page.md) | |
-**Result** | [**List<Order>**](Order.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ListChainsResult.md b/src/Packages/ZkEvmApi/Documentation~/ListChainsResult.md
deleted file mode 100644
index 17633f1d9..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ListChainsResult.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ListChainsResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**List<ChainWithDetails>**](ChainWithDetails.md) | List of chains |
-**Page** | [**Page**](Page.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ListCollectionBidsResult.md b/src/Packages/ZkEvmApi/Documentation~/ListCollectionBidsResult.md
deleted file mode 100644
index 8c018131e..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ListCollectionBidsResult.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ListCollectionBidsResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Page** | [**Page**](Page.md) | |
-**Result** | [**List<Order>**](Order.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ListCollectionOwnersResult.md b/src/Packages/ZkEvmApi/Documentation~/ListCollectionOwnersResult.md
deleted file mode 100644
index 0360c3486..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ListCollectionOwnersResult.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ListCollectionOwnersResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**List<NFTWithOwner>**](NFTWithOwner.md) | List of NFT owners |
-**Page** | [**Page**](Page.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ListCollectionsResult.md b/src/Packages/ZkEvmApi/Documentation~/ListCollectionsResult.md
deleted file mode 100644
index a30cc2d85..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ListCollectionsResult.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ListCollectionsResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | **List<Collection>** | List of collections |
-**Page** | [**Page**](Page.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ListFiltersResult.md b/src/Packages/ZkEvmApi/Documentation~/ListFiltersResult.md
deleted file mode 100644
index 3fefc4fa7..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ListFiltersResult.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ListFiltersResult
-List filters result
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**FilterResult**](FilterResult.md) | |
-**Page** | [**Page**](Page.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ListListingsResult.md b/src/Packages/ZkEvmApi/Documentation~/ListListingsResult.md
deleted file mode 100644
index 9d9c46bc2..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ListListingsResult.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ListListingsResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Page** | [**Page**](Page.md) | |
-**Result** | [**List<Order>**](Order.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ListMetadataResult.md b/src/Packages/ZkEvmApi/Documentation~/ListMetadataResult.md
deleted file mode 100644
index 2632c8edd..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ListMetadataResult.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ListMetadataResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**List<Metadata>**](Metadata.md) | List of metadata |
-**Page** | [**Page**](Page.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ListMintRequestsResult.md b/src/Packages/ZkEvmApi/Documentation~/ListMintRequestsResult.md
deleted file mode 100644
index 5a365c5a5..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ListMintRequestsResult.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ListMintRequestsResult
-List mint requests
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**List<GetMintRequestResult>**](GetMintRequestResult.md) | List of mint requests |
-**Page** | [**Page**](Page.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ListNFTOwnersResult.md b/src/Packages/ZkEvmApi/Documentation~/ListNFTOwnersResult.md
deleted file mode 100644
index f611a3cb8..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ListNFTOwnersResult.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ListNFTOwnersResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**List<NFTOwner>**](NFTOwner.md) | List of nft owners |
-**Page** | [**Page**](Page.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ListNFTsByOwnerResult.md b/src/Packages/ZkEvmApi/Documentation~/ListNFTsByOwnerResult.md
deleted file mode 100644
index 15afad4b6..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ListNFTsByOwnerResult.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ListNFTsByOwnerResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**List<NFTWithBalance>**](NFTWithBalance.md) | List of NFTs by owner |
-**Page** | [**Page**](Page.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ListNFTsResult.md b/src/Packages/ZkEvmApi/Documentation~/ListNFTsResult.md
deleted file mode 100644
index 82a50109c..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ListNFTsResult.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ListNFTsResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**List<NFT>**](NFT.md) | List of NFTs |
-**Page** | [**Page**](Page.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ListTokensResult.md b/src/Packages/ZkEvmApi/Documentation~/ListTokensResult.md
deleted file mode 100644
index 250825068..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ListTokensResult.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ListTokensResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**List<Token>**](Token.md) | List of tokens |
-**Page** | [**Page**](Page.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ListTradeResult.md b/src/Packages/ZkEvmApi/Documentation~/ListTradeResult.md
deleted file mode 100644
index 8b151235c..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ListTradeResult.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ListTradeResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Page** | [**Page**](Page.md) | |
-**Result** | [**List<Trade>**](Trade.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Listing.md b/src/Packages/ZkEvmApi/Documentation~/Listing.md
deleted file mode 100644
index 6ba5a3b42..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Listing.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Listing
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**ListingId** | **string** | Global Order identifier |
-**PriceDetails** | [**MarketPriceDetails**](MarketPriceDetails.md) | |
-**TokenId** | **string** | Token ID |
-**ContractAddress** | **string** | ETH Address of collection that the asset belongs to |
-**Creator** | **string** | ETH Address of listing creator |
-**Amount** | **string** | Amount of token included in the listing |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ListingResult.md b/src/Packages/ZkEvmApi/Documentation~/ListingResult.md
deleted file mode 100644
index 8b26af28d..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ListingResult.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ListingResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**Order**](Order.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Market.md b/src/Packages/ZkEvmApi/Documentation~/Market.md
deleted file mode 100644
index 9a4e5c258..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Market.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Market
-Market data
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**FloorListing** | [**Listing**](Listing.md) | Cheapest active listing |
-**TopBid** | [**Bid**](Bid.md) | Highest active big |
-**LastTrade** | [**LastTrade**](LastTrade.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/MarketNft.md b/src/Packages/ZkEvmApi/Documentation~/MarketNft.md
deleted file mode 100644
index d2a7a17aa..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/MarketNft.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.MarketNft
-NFT market data
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**LastTrade** | [**LastTrade**](LastTrade.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/MarketPriceDetails.md b/src/Packages/ZkEvmApi/Documentation~/MarketPriceDetails.md
deleted file mode 100644
index 1c393e054..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/MarketPriceDetails.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# Immutable.Api.ZkEvm.Model.MarketPriceDetails
-Market Price details
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Token** | [**MarketPriceDetailsToken**](MarketPriceDetailsToken.md) | |
-**Amount** | **string** | The token amount value. This value is provided in the smallest unit of the token (e.g. wei for ETH) |
-**FeeInclusiveAmount** | **string** | The token amount value. This value is provided in the smallest unit of the token (e.g. wei for ETH) |
-**Fees** | [**List<MarketPriceFees>**](MarketPriceFees.md) | |
-**ConvertedPrices** | **Dictionary<string, string>** | A mapping of converted prices for major currencies such as ETH, USD. All converted prices are fee-inclusive. |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/MarketPriceDetailsToken.md b/src/Packages/ZkEvmApi/Documentation~/MarketPriceDetailsToken.md
deleted file mode 100644
index 9ae62db30..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/MarketPriceDetailsToken.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Immutable.Api.ZkEvm.Model.MarketPriceDetailsToken
-Token details
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Type** | **string** | Token type user is offering, which in this case is the native IMX token |
-**Symbol** | **string** | The symbol of token |
-**ContractAddress** | **string** | Address of ERC20 token |
-**Decimals** | **int?** | The decimals of token |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/MarketPriceERC20Token.md b/src/Packages/ZkEvmApi/Documentation~/MarketPriceERC20Token.md
deleted file mode 100644
index 99bdc32c9..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/MarketPriceERC20Token.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Immutable.Api.ZkEvm.Model.MarketPriceERC20Token
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Type** | **string** | Token type user is offering, which in this case is ERC20 |
-**ContractAddress** | **string** | Address of ERC20 token |
-**Symbol** | **string** | The symbol of token |
-**Decimals** | **int?** | The decimals of token |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/MarketPriceFees.md b/src/Packages/ZkEvmApi/Documentation~/MarketPriceFees.md
deleted file mode 100644
index f412f351d..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/MarketPriceFees.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.MarketPriceFees
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Amount** | **string** | Fee in the payment currency |
-**Type** | **string** | Fee type |
-**RecipientAddress** | **string** | Wallet address of fee recipient |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/MarketPriceNativeToken.md b/src/Packages/ZkEvmApi/Documentation~/MarketPriceNativeToken.md
deleted file mode 100644
index 5d9b601a5..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/MarketPriceNativeToken.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.MarketPriceNativeToken
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Type** | **string** | Token type user is offering, which in this case is the native IMX token |
-**Symbol** | **string** | The symbol of token |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/MarketplaceContractType.md b/src/Packages/ZkEvmApi/Documentation~/MarketplaceContractType.md
deleted file mode 100644
index 17646ae83..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/MarketplaceContractType.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.MarketplaceContractType
-The contract type for a collection
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Metadata.md b/src/Packages/ZkEvmApi/Documentation~/Metadata.md
deleted file mode 100644
index 4ca01e981..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Metadata.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Metadata
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **Guid** | Metadata id in UUIDv4 format |
-**Chain** | [**Chain**](Chain.md) | |
-**ContractAddress** | **string** | The contract address of the metadata |
-**CreatedAt** | **DateTime** | When the metadata was created |
-**UpdatedAt** | **DateTime?** | When the metadata was last updated |
-**Name** | **string** | The name of the NFT |
-**Description** | **string** | The description of the NFT |
-**Image** | **string** | The image url of the NFT |
-**ExternalUrl** | **string** | The external website link of NFT | [optional]
-**AnimationUrl** | **string** | The animation url of the NFT |
-**YoutubeUrl** | **string** | The youtube URL of NFT |
-**Attributes** | [**List<NFTMetadataAttribute>**](NFTMetadataAttribute.md) | List of Metadata attributes |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/MetadataApi.md b/src/Packages/ZkEvmApi/Documentation~/MetadataApi.md
deleted file mode 100644
index aa9f5faf5..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/MetadataApi.md
+++ /dev/null
@@ -1,624 +0,0 @@
-# Immutable.Api.ZkEvm.Api.MetadataApi
-
-All URIs are relative to *https://api.sandbox.immutable.com*
-
-| Method | HTTP request | Description |
-|--------|--------------|-------------|
-| [**GetMetadata**](MetadataApi.md#getmetadata) | **GET** /v1/chains/{chain_name}/collections/{contract_address}/metadata/{metadata_id} | Get metadata by ID |
-| [**ListMetadata**](MetadataApi.md#listmetadata) | **GET** /v1/chains/{chain_name}/collections/{contract_address}/metadata | Get a list of metadata from the given contract |
-| [**ListMetadataForChain**](MetadataApi.md#listmetadataforchain) | **GET** /v1/chains/{chain_name}/metadata | Get a list of metadata from the given chain |
-| [**ListStacks**](MetadataApi.md#liststacks) | **GET** /v1/chains/{chain_name}/stacks | List NFT stack bundles by stack_id. Response will include Market, Listings & Stack Count information for each stack |
-| [**RefreshMetadataByID**](MetadataApi.md#refreshmetadatabyid) | **POST** /v1/chains/{chain_name}/collections/{contract_address}/metadata/refresh-metadata | Refresh stacked metadata |
-| [**RefreshNFTMetadataByTokenID**](MetadataApi.md#refreshnftmetadatabytokenid) | **POST** /v1/chains/{chain_name}/collections/{contract_address}/nfts/refresh-metadata | Refresh NFT metadata |
-
-
-# **GetMetadata**
-> GetMetadataResult GetMetadata (string chainName, string contractAddress, Guid metadataId)
-
-Get metadata by ID
-
-Get metadata by ID
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class GetMetadataExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new MetadataApi(config);
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var contractAddress = 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3; // string | The address of metadata contract
- var metadataId = "metadataId_example"; // Guid | The id of the metadata
-
- try
- {
- // Get metadata by ID
- GetMetadataResult result = apiInstance.GetMetadata(chainName, contractAddress, metadataId);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling MetadataApi.GetMetadata: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the GetMetadataWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Get metadata by ID
- ApiResponse response = apiInstance.GetMetadataWithHttpInfo(chainName, contractAddress, metadataId);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling MetadataApi.GetMetadataWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | The name of chain | |
-| **contractAddress** | **string** | The address of metadata contract | |
-| **metadataId** | **Guid** | The id of the metadata | |
-
-### Return type
-
-[**GetMetadataResult**](GetMetadataResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **ListMetadata**
-> ListMetadataResult ListMetadata (string chainName, string contractAddress, DateTime? fromUpdatedAt = null, string? pageCursor = null, int? pageSize = null)
-
-Get a list of metadata from the given contract
-
-Get a list of metadata from the given contract
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListMetadataExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new MetadataApi(config);
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var contractAddress = 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3; // string | The address of metadata contract
- var fromUpdatedAt = 2022-08-16T17:43:26.991388Z; // DateTime? | Datetime to use as the oldest updated timestamp (optional)
- var pageCursor = "pageCursor_example"; // string? | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- var pageSize = 100; // int? | Maximum number of items to return (optional) (default to 100)
-
- try
- {
- // Get a list of metadata from the given contract
- ListMetadataResult result = apiInstance.ListMetadata(chainName, contractAddress, fromUpdatedAt, pageCursor, pageSize);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling MetadataApi.ListMetadata: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListMetadataWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Get a list of metadata from the given contract
- ApiResponse response = apiInstance.ListMetadataWithHttpInfo(chainName, contractAddress, fromUpdatedAt, pageCursor, pageSize);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling MetadataApi.ListMetadataWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | The name of chain | |
-| **contractAddress** | **string** | The address of metadata contract | |
-| **fromUpdatedAt** | **DateTime?** | Datetime to use as the oldest updated timestamp | [optional] |
-| **pageCursor** | **string?** | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-| **pageSize** | **int?** | Maximum number of items to return | [optional] [default to 100] |
-
-### Return type
-
-[**ListMetadataResult**](ListMetadataResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **ListMetadataForChain**
-> ListMetadataResult ListMetadataForChain (string chainName, DateTime? fromUpdatedAt = null, string? pageCursor = null, int? pageSize = null)
-
-Get a list of metadata from the given chain
-
-Get a list of metadata from the given chain
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListMetadataForChainExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new MetadataApi(config);
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var fromUpdatedAt = 2022-08-16T17:43:26.991388Z; // DateTime? | Datetime to use as the oldest updated timestamp (optional)
- var pageCursor = "pageCursor_example"; // string? | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- var pageSize = 100; // int? | Maximum number of items to return (optional) (default to 100)
-
- try
- {
- // Get a list of metadata from the given chain
- ListMetadataResult result = apiInstance.ListMetadataForChain(chainName, fromUpdatedAt, pageCursor, pageSize);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling MetadataApi.ListMetadataForChain: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListMetadataForChainWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Get a list of metadata from the given chain
- ApiResponse response = apiInstance.ListMetadataForChainWithHttpInfo(chainName, fromUpdatedAt, pageCursor, pageSize);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling MetadataApi.ListMetadataForChainWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | The name of chain | |
-| **fromUpdatedAt** | **DateTime?** | Datetime to use as the oldest updated timestamp | [optional] |
-| **pageCursor** | **string?** | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-| **pageSize** | **int?** | Maximum number of items to return | [optional] [default to 100] |
-
-### Return type
-
-[**ListMetadataResult**](ListMetadataResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **ListStacks**
-> List<StackBundle> ListStacks (string chainName, List stackId)
-
-List NFT stack bundles by stack_id. Response will include Market, Listings & Stack Count information for each stack
-
-List NFT stack bundles by stack_id. This endpoint functions similarly to `ListMetadataByID` but extends the response to include Market, Listings & Stack Count information for each stack.
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListStacksExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new MetadataApi(config);
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var stackId = new List(); // List | List of stack_id to filter by
-
- try
- {
- // List NFT stack bundles by stack_id. Response will include Market, Listings & Stack Count information for each stack
- List result = apiInstance.ListStacks(chainName, stackId);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling MetadataApi.ListStacks: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListStacksWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // List NFT stack bundles by stack_id. Response will include Market, Listings & Stack Count information for each stack
- ApiResponse> response = apiInstance.ListStacksWithHttpInfo(chainName, stackId);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling MetadataApi.ListStacksWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | The name of chain | |
-| **stackId** | [**List<Guid>**](Guid.md) | List of stack_id to filter by | |
-
-### Return type
-
-[**List<StackBundle>**](StackBundle.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **401** | Unauthorised Request (401) | - |
-| **403** | Forbidden Request (403) | - |
-| **404** | The specified resource was not found (404) | - |
-| **429** | Too Many Requests (429) | * Retry-After -
|
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **RefreshMetadataByID**
-> MetadataRefreshRateLimitResult RefreshMetadataByID (string chainName, string contractAddress, RefreshMetadataByIDRequest refreshMetadataByIDRequest)
-
-Refresh stacked metadata
-
-Refresh stacked metadata
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class RefreshMetadataByIDExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- // Configure API key authorization: ImmutableApiKey
- config.AddApiKey("x-immutable-api-key", "YOUR_API_KEY");
- // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
- // config.AddApiKeyPrefix("x-immutable-api-key", "Bearer");
-
- var apiInstance = new MetadataApi(config);
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var contractAddress = "contractAddress_example"; // string | Contract address
- var refreshMetadataByIDRequest = new RefreshMetadataByIDRequest(); // RefreshMetadataByIDRequest | NFT Metadata Refresh Request
-
- try
- {
- // Refresh stacked metadata
- MetadataRefreshRateLimitResult result = apiInstance.RefreshMetadataByID(chainName, contractAddress, refreshMetadataByIDRequest);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling MetadataApi.RefreshMetadataByID: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the RefreshMetadataByIDWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Refresh stacked metadata
- ApiResponse response = apiInstance.RefreshMetadataByIDWithHttpInfo(chainName, contractAddress, refreshMetadataByIDRequest);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling MetadataApi.RefreshMetadataByIDWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | The name of chain | |
-| **contractAddress** | **string** | Contract address | |
-| **refreshMetadataByIDRequest** | [**RefreshMetadataByIDRequest**](RefreshMetadataByIDRequest.md) | NFT Metadata Refresh Request | |
-
-### Return type
-
-[**MetadataRefreshRateLimitResult**](MetadataRefreshRateLimitResult.md)
-
-### Authorization
-
-[ImmutableApiKey](../README.md#ImmutableApiKey)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **202** | Accepted | * imx-refreshes-limit -
* imx-refresh-limit-reset -
* imx-remaining-refreshes -
* retry-after -
|
-| **400** | Bad Request (400) | - |
-| **401** | Unauthorised Request (401) | - |
-| **403** | Forbidden Request (403) | - |
-| **404** | The specified resource was not found (404) | - |
-| **429** | Too Many Metadata refreshes (429) | * imx-refreshes-limit -
* imx-refresh-limit-reset -
* imx-remaining-refreshes -
* Retry-After -
|
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **RefreshNFTMetadataByTokenID**
-> MetadataRefreshRateLimitResult RefreshNFTMetadataByTokenID (string contractAddress, string chainName, RefreshNFTMetadataByTokenIDRequest refreshNFTMetadataByTokenIDRequest)
-
-Refresh NFT metadata
-
-Refresh NFT metadata
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class RefreshNFTMetadataByTokenIDExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- // Configure API key authorization: ImmutableApiKey
- config.AddApiKey("x-immutable-api-key", "YOUR_API_KEY");
- // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
- // config.AddApiKeyPrefix("x-immutable-api-key", "Bearer");
-
- var apiInstance = new MetadataApi(config);
- var contractAddress = 0x8a90cab2b38dba80c64b7734e58ee1db38b8992e; // string | The address of contract
- var chainName = "chainName_example"; // string | The name of chain
- var refreshNFTMetadataByTokenIDRequest = new RefreshNFTMetadataByTokenIDRequest(); // RefreshNFTMetadataByTokenIDRequest | the request body
-
- try
- {
- // Refresh NFT metadata
- MetadataRefreshRateLimitResult result = apiInstance.RefreshNFTMetadataByTokenID(contractAddress, chainName, refreshNFTMetadataByTokenIDRequest);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling MetadataApi.RefreshNFTMetadataByTokenID: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the RefreshNFTMetadataByTokenIDWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Refresh NFT metadata
- ApiResponse response = apiInstance.RefreshNFTMetadataByTokenIDWithHttpInfo(contractAddress, chainName, refreshNFTMetadataByTokenIDRequest);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling MetadataApi.RefreshNFTMetadataByTokenIDWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **contractAddress** | **string** | The address of contract | |
-| **chainName** | **string** | The name of chain | |
-| **refreshNFTMetadataByTokenIDRequest** | [**RefreshNFTMetadataByTokenIDRequest**](RefreshNFTMetadataByTokenIDRequest.md) | the request body | |
-
-### Return type
-
-[**MetadataRefreshRateLimitResult**](MetadataRefreshRateLimitResult.md)
-
-### Authorization
-
-[ImmutableApiKey](../README.md#ImmutableApiKey)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **202** | Accepted | * imx-refreshes-limit -
* imx-refresh-limit-reset -
* imx-remaining-refreshes -
* retry-after -
|
-| **400** | Bad Request (400) | - |
-| **401** | Unauthorised Request (401) | - |
-| **403** | Forbidden Request (403) | - |
-| **404** | The specified resource was not found (404) | - |
-| **429** | Too Many Metadata refreshes (429) | * imx-refreshes-limit -
* imx-refresh-limit-reset -
* imx-remaining-refreshes -
* Retry-After -
|
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/MetadataRefreshRateLimitResult.md b/src/Packages/ZkEvmApi/Documentation~/MetadataRefreshRateLimitResult.md
deleted file mode 100644
index 98e8cd00d..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/MetadataRefreshRateLimitResult.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Immutable.Api.ZkEvm.Model.MetadataRefreshRateLimitResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**ImxRefreshesLimit** | **string** | |
-**ImxRefreshLimitReset** | **string** | |
-**ImxRemainingRefreshes** | **string** | |
-**RetryAfter** | **string** | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/MetadataSearchApi.md b/src/Packages/ZkEvmApi/Documentation~/MetadataSearchApi.md
deleted file mode 100644
index f5e0dc4b4..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/MetadataSearchApi.md
+++ /dev/null
@@ -1,335 +0,0 @@
-# Immutable.Api.ZkEvm.Api.MetadataSearchApi
-
-All URIs are relative to *https://api.sandbox.immutable.com*
-
-| Method | HTTP request | Description |
-|--------|--------------|-------------|
-| [**ListFilters**](MetadataSearchApi.md#listfilters) | **GET** /v1/chains/{chain_name}/search/filters/{contract_address} | Get list of metadata attribute filters |
-| [**SearchNFTs**](MetadataSearchApi.md#searchnfts) | **GET** /v1/chains/{chain_name}/search/nfts | Search NFTs |
-| [**SearchStacks**](MetadataSearchApi.md#searchstacks) | **GET** /v1/chains/{chain_name}/search/stacks | Search NFT stacks |
-
-
-# **ListFilters**
-> ListFiltersResult ListFilters (string chainName, string contractAddress)
-
-Get list of metadata attribute filters
-
-Get list of metadata filters
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListFiltersExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new MetadataSearchApi(config);
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var contractAddress = 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3; // string | Contract addresses for collection
-
- try
- {
- // Get list of metadata attribute filters
- ListFiltersResult result = apiInstance.ListFilters(chainName, contractAddress);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling MetadataSearchApi.ListFilters: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListFiltersWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Get list of metadata attribute filters
- ApiResponse response = apiInstance.ListFiltersWithHttpInfo(chainName, contractAddress);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling MetadataSearchApi.ListFiltersWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | The name of chain | |
-| **contractAddress** | **string** | Contract addresses for collection | |
-
-### Return type
-
-[**ListFiltersResult**](ListFiltersResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **401** | Unauthorised Request (401) | - |
-| **403** | Forbidden Request (403) | - |
-| **404** | The specified resource was not found (404) | - |
-| **429** | Too Many Requests (429) | * Retry-After -
|
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **SearchNFTs**
-> SearchNFTsResult SearchNFTs (string chainName, List contractAddress, string? accountAddress = null, List? stackId = null, bool? onlyIncludeOwnerListings = null, int? pageSize = null, string? pageCursor = null)
-
-Search NFTs
-
-Search NFTs
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class SearchNFTsExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new MetadataSearchApi(config);
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var contractAddress = new List(); // List | List of contract addresses to filter by
- var accountAddress = 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3; // string? | Account address to filter by (optional)
- var stackId = new List?(); // List? | Filters NFTs that belong to any of these stacks (optional)
- var onlyIncludeOwnerListings = true; // bool? | Whether the listings should include only the owner created listings (optional)
- var pageSize = 100; // int? | Number of results to return per page (optional) (default to 100)
- var pageCursor = "pageCursor_example"; // string? | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
-
- try
- {
- // Search NFTs
- SearchNFTsResult result = apiInstance.SearchNFTs(chainName, contractAddress, accountAddress, stackId, onlyIncludeOwnerListings, pageSize, pageCursor);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling MetadataSearchApi.SearchNFTs: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the SearchNFTsWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Search NFTs
- ApiResponse response = apiInstance.SearchNFTsWithHttpInfo(chainName, contractAddress, accountAddress, stackId, onlyIncludeOwnerListings, pageSize, pageCursor);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling MetadataSearchApi.SearchNFTsWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | The name of chain | |
-| **contractAddress** | [**List<string>**](string.md) | List of contract addresses to filter by | |
-| **accountAddress** | **string?** | Account address to filter by | [optional] |
-| **stackId** | [**List<Guid>?**](Guid.md) | Filters NFTs that belong to any of these stacks | [optional] |
-| **onlyIncludeOwnerListings** | **bool?** | Whether the listings should include only the owner created listings | [optional] |
-| **pageSize** | **int?** | Number of results to return per page | [optional] [default to 100] |
-| **pageCursor** | **string?** | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-
-### Return type
-
-[**SearchNFTsResult**](SearchNFTsResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **401** | Unauthorised Request (401) | - |
-| **403** | Forbidden Request (403) | - |
-| **404** | The specified resource was not found (404) | - |
-| **429** | Too Many Requests (429) | * Retry-After -
|
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **SearchStacks**
-> SearchStacksResult SearchStacks (string chainName, List contractAddress, string? accountAddress = null, bool? onlyIncludeOwnerListings = null, bool? onlyIfHasActiveListings = null, string? traits = null, string? keyword = null, string? paymentToken = null, string? sortBy = null, int? pageSize = null, string? pageCursor = null)
-
-Search NFT stacks
-
-Search NFT stacks
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class SearchStacksExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new MetadataSearchApi(config);
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var contractAddress = new List(); // List | List of contract addresses to filter by
- var accountAddress = 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3; // string? | Account address to filter by (optional)
- var onlyIncludeOwnerListings = true; // bool? | Whether to the listings should include only the owner created listings (optional)
- var onlyIfHasActiveListings = true; // bool? | Filters results to include only stacks that have a current active listing. False and 'null' return all unfiltered stacks. (optional)
- var traits = "traits_example"; // string? | JSON encoded traits to filter by. e.g. encodeURIComponent(JSON.stringify({\"rarity\": {\"values\": [\"common\", \"rare\"], \"condition\": \"eq\"}})) (optional)
- var keyword = sword; // string? | Keyword to search NFT name and description. Alphanumeric characters only. (optional)
- var paymentToken = NATIVE; // string? | Filters the active listings, bids, floor listing and top bid by the specified payment token, either the address of the payment token contract or 'NATIVE' (optional)
- var sortBy = "cheapest_first"; // string? | Sort results in a specific order (optional)
- var pageSize = 100; // int? | Number of results to return per page (optional) (default to 100)
- var pageCursor = "pageCursor_example"; // string? | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
-
- try
- {
- // Search NFT stacks
- SearchStacksResult result = apiInstance.SearchStacks(chainName, contractAddress, accountAddress, onlyIncludeOwnerListings, onlyIfHasActiveListings, traits, keyword, paymentToken, sortBy, pageSize, pageCursor);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling MetadataSearchApi.SearchStacks: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the SearchStacksWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Search NFT stacks
- ApiResponse response = apiInstance.SearchStacksWithHttpInfo(chainName, contractAddress, accountAddress, onlyIncludeOwnerListings, onlyIfHasActiveListings, traits, keyword, paymentToken, sortBy, pageSize, pageCursor);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling MetadataSearchApi.SearchStacksWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | The name of chain | |
-| **contractAddress** | [**List<string>**](string.md) | List of contract addresses to filter by | |
-| **accountAddress** | **string?** | Account address to filter by | [optional] |
-| **onlyIncludeOwnerListings** | **bool?** | Whether to the listings should include only the owner created listings | [optional] |
-| **onlyIfHasActiveListings** | **bool?** | Filters results to include only stacks that have a current active listing. False and 'null' return all unfiltered stacks. | [optional] |
-| **traits** | **string?** | JSON encoded traits to filter by. e.g. encodeURIComponent(JSON.stringify({\"rarity\": {\"values\": [\"common\", \"rare\"], \"condition\": \"eq\"}})) | [optional] |
-| **keyword** | **string?** | Keyword to search NFT name and description. Alphanumeric characters only. | [optional] |
-| **paymentToken** | **string?** | Filters the active listings, bids, floor listing and top bid by the specified payment token, either the address of the payment token contract or 'NATIVE' | [optional] |
-| **sortBy** | **string?** | Sort results in a specific order | [optional] |
-| **pageSize** | **int?** | Number of results to return per page | [optional] [default to 100] |
-| **pageCursor** | **string?** | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-
-### Return type
-
-[**SearchStacksResult**](SearchStacksResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **401** | Unauthorised Request (401) | - |
-| **403** | Forbidden Request (403) | - |
-| **404** | The specified resource was not found (404) | - |
-| **429** | Too Many Requests (429) | * Retry-After -
|
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Mint.md b/src/Packages/ZkEvmApi/Documentation~/Mint.md
deleted file mode 100644
index 2efc188da..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Mint.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Mint
-The mint activity details
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**To** | **string** | The account address the asset was minted to |
-**Amount** | **string** | The minted amount |
-**Asset** | [**ActivityAsset**](ActivityAsset.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/MintAsset.md b/src/Packages/ZkEvmApi/Documentation~/MintAsset.md
deleted file mode 100644
index 05d9e5ad0..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/MintAsset.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Immutable.Api.ZkEvm.Model.MintAsset
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**ReferenceId** | **string** | The id of this asset in the system that originates the mint request |
-**OwnerAddress** | **string** | The address of the receiver |
-**TokenId** | **string** | An optional `uint256` token id as string. Required for ERC1155 collections. | [optional]
-**Amount** | **string** | Optional mount of tokens to mint. Required for ERC1155 collections. ERC712 collections can omit this field or set it to 1 | [optional]
-**Metadata** | [**NFTMetadataRequest**](NFTMetadataRequest.md) | | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/MintRequestErrorMessage.md b/src/Packages/ZkEvmApi/Documentation~/MintRequestErrorMessage.md
deleted file mode 100644
index a28a6c203..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/MintRequestErrorMessage.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.MintRequestErrorMessage
-The error details in case the mint request fails
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Message** | **string** | An error message in case the mint request fails | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/MintRequestStatus.md b/src/Packages/ZkEvmApi/Documentation~/MintRequestStatus.md
deleted file mode 100644
index 8f3ff1757..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/MintRequestStatus.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.MintRequestStatus
-The status of the mint request
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/NFT.md b/src/Packages/ZkEvmApi/Documentation~/NFT.md
deleted file mode 100644
index 1d5ac3ce2..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/NFT.md
+++ /dev/null
@@ -1,26 +0,0 @@
-# Immutable.Api.ZkEvm.Model.NFT
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Chain** | [**Chain**](Chain.md) | |
-**TokenId** | **string** | An `uint256` token id as string |
-**ContractAddress** | **string** | The contract address of the NFT |
-**ContractType** | **NFTContractType** | |
-**IndexedAt** | **DateTime** | When the NFT was first indexed |
-**UpdatedAt** | **DateTime** | When the NFT owner was last updated |
-**MetadataSyncedAt** | **DateTime?** | When NFT metadata was last synced |
-**MetadataId** | **Guid?** | The id of the metadata of this NFT | [optional]
-**Name** | **string** | The name of the NFT |
-**Description** | **string** | The description of the NFT |
-**Image** | **string** | The image url of the NFT |
-**ExternalLink** | **string** | (deprecated - use external_url instead) The external website link of NFT |
-**ExternalUrl** | **string** | The external website link of NFT |
-**AnimationUrl** | **string** | The animation url of the NFT |
-**YoutubeUrl** | **string** | The youtube URL of NFT |
-**Attributes** | [**List<NFTMetadataAttribute>**](NFTMetadataAttribute.md) | List of NFT Metadata attributes |
-**TotalSupply** | **string** | The total supply of NFT | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/NFTBundle.md b/src/Packages/ZkEvmApi/Documentation~/NFTBundle.md
deleted file mode 100644
index c84a2896c..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/NFTBundle.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Immutable.Api.ZkEvm.Model.NFTBundle
-NFT bundle includes NFT with stack, markets and listings
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**NftWithStack** | [**NFTWithStack**](NFTWithStack.md) | |
-**Market** | [**Market**](Market.md) | |
-**Listings** | [**List<Listing>**](Listing.md) | List of open listings for the NFT. |
-**Bids** | [**List<Bid>**](Bid.md) | List of open bids for the NFT. |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/NFTContractType.md b/src/Packages/ZkEvmApi/Documentation~/NFTContractType.md
deleted file mode 100644
index 3bd36dda0..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/NFTContractType.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.NFTContractType
-The contract type for an NFT
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/NFTMetadataAttribute.md b/src/Packages/ZkEvmApi/Documentation~/NFTMetadataAttribute.md
deleted file mode 100644
index f1124e921..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/NFTMetadataAttribute.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.NFTMetadataAttribute
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**DisplayType** | **string** | Display type for this attribute | [optional]
-**TraitType** | **string** | The metadata trait type |
-**Value** | [**NFTMetadataAttributeValue**](NFTMetadataAttributeValue.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/NFTMetadataAttributeValue.md b/src/Packages/ZkEvmApi/Documentation~/NFTMetadataAttributeValue.md
deleted file mode 100644
index b52282a50..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/NFTMetadataAttributeValue.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.NFTMetadataAttributeValue
-The metadata trait value
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/NFTMetadataRequest.md b/src/Packages/ZkEvmApi/Documentation~/NFTMetadataRequest.md
deleted file mode 100644
index 2d5abc00c..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/NFTMetadataRequest.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# Immutable.Api.ZkEvm.Model.NFTMetadataRequest
-The NFT metadata. Total size of this object should not exceed 16 KiB
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Name** | **string** | The name of the NFT | [optional]
-**Description** | **string** | The description of the NFT | [optional]
-**Image** | **string** | The image url of the NFT | [optional]
-**ExternalUrl** | **string** | The external link of the NFT | [optional]
-**AnimationUrl** | **string** | The animation url of the NFT | [optional]
-**YoutubeUrl** | **string** | The youtube link of the NFT | [optional]
-**Attributes** | [**List<NFTMetadataAttribute>**](NFTMetadataAttribute.md) | List of Metadata attributes | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/NFTOwner.md b/src/Packages/ZkEvmApi/Documentation~/NFTOwner.md
deleted file mode 100644
index 1f00ca953..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/NFTOwner.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# Immutable.Api.ZkEvm.Model.NFTOwner
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Chain** | [**Chain**](Chain.md) | |
-**ContractAddress** | **string** | The address of NFT contract |
-**TokenId** | **string** | An `uint256` token id as string |
-**AccountAddress** | **string** | The account address of the owner of the NFT |
-**Balance** | **string** | The amount of owned tokens (uint256 as string) |
-**UpdatedAt** | **DateTime** | When the NFT owner was last updated | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/NFTQuoteResult.md b/src/Packages/ZkEvmApi/Documentation~/NFTQuoteResult.md
deleted file mode 100644
index 975a4bc1d..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/NFTQuoteResult.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# Immutable.Api.ZkEvm.Model.NFTQuoteResult
-NFT quote result
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Chain** | [**Chain**](Chain.md) | |
-**TokenId** | **string** | Token id of NFT (uint256 as string) |
-**MarketStack** | [**Market**](Market.md) | |
-**MarketNft** | [**MarketNft**](MarketNft.md) | |
-**MarketCollection** | [**Market**](Market.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/NFTSale.md b/src/Packages/ZkEvmApi/Documentation~/NFTSale.md
deleted file mode 100644
index 4bc63c0e8..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/NFTSale.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# Immutable.Api.ZkEvm.Model.NFTSale
-The NFT Sale activity details
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**OrderId** | **string** | The id of order |
-**To** | **string** | The account address of buyer |
-**From** | **string** | The account address of seller |
-**Asset** | [**List<ActivityNFT>**](ActivityNFT.md) | |
-**Payment** | [**SalePayment**](SalePayment.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/NFTWithBalance.md b/src/Packages/ZkEvmApi/Documentation~/NFTWithBalance.md
deleted file mode 100644
index 868c6bfaf..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/NFTWithBalance.md
+++ /dev/null
@@ -1,25 +0,0 @@
-# Immutable.Api.ZkEvm.Model.NFTWithBalance
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Chain** | [**Chain**](Chain.md) | |
-**TokenId** | **string** | An `uint256` token id as string |
-**ContractAddress** | **string** | The contract address of the NFT |
-**ContractType** | **NFTContractType** | |
-**IndexedAt** | **DateTime** | When the NFT was first indexed |
-**UpdatedAt** | **DateTime** | When the NFT owner was last updated |
-**MetadataSyncedAt** | **DateTime?** | When NFT metadata was last synced |
-**MetadataId** | **Guid?** | The id of the metadata of this NFT | [optional]
-**Name** | **string** | The name of the NFT |
-**Description** | **string** | The description of the NFT |
-**Image** | **string** | The image url of the NFT |
-**ExternalLink** | **string** | The external website link of NFT |
-**AnimationUrl** | **string** | The animation url of the NFT |
-**YoutubeUrl** | **string** | The youtube URL of NFT |
-**Attributes** | [**List<NFTMetadataAttribute>**](NFTMetadataAttribute.md) | List of Metadata attributes |
-**Balance** | **string** | The amount of this NFT this account owns |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/NFTWithOwner.md b/src/Packages/ZkEvmApi/Documentation~/NFTWithOwner.md
deleted file mode 100644
index 472361b31..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/NFTWithOwner.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# Immutable.Api.ZkEvm.Model.NFTWithOwner
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Chain** | [**Chain**](Chain.md) | |
-**ContractAddress** | **string** | The address of NFT contract |
-**TokenId** | **string** | An `uint256` token id as string |
-**AccountAddress** | **string** | The account address of the owner of the NFT |
-**Balance** | **string** | The amount of owned tokens (uint256 as string) |
-**UpdatedAt** | **DateTime** | When the owner last changed for the given NFT |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/NFTWithStack.md b/src/Packages/ZkEvmApi/Documentation~/NFTWithStack.md
deleted file mode 100644
index b95b1fbda..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/NFTWithStack.md
+++ /dev/null
@@ -1,25 +0,0 @@
-# Immutable.Api.ZkEvm.Model.NFTWithStack
-Stack
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**TokenId** | **string** | Token id of NFT (uint256 as string) |
-**StackId** | **Guid** | Stack ID |
-**Chain** | [**Chain**](Chain.md) | |
-**ContractAddress** | **string** | Contract address |
-**ContractType** | **MarketplaceContractType** | |
-**CreatedAt** | **DateTime** | When the metadata was created |
-**UpdatedAt** | **DateTime** | When the metadata was last updated |
-**Name** | **string** | The name of the NFT |
-**Description** | **string** | The description of the NFT |
-**Image** | **string** | The image url of the NFT |
-**ExternalUrl** | **string** | The external website link of NFT |
-**AnimationUrl** | **string** | The animation url of the NFT |
-**YoutubeUrl** | **string** | The youtube URL of NFT |
-**Attributes** | [**List<NFTMetadataAttribute>**](NFTMetadataAttribute.md) | List of Metadata attributes |
-**Balance** | **int?** | Balance of NFT |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/NativeItem.md b/src/Packages/ZkEvmApi/Documentation~/NativeItem.md
deleted file mode 100644
index dc6449a58..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/NativeItem.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.NativeItem
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Type** | **string** | Token type user is offering, which in this case is the native IMX token |
-**Amount** | **string** | A string representing the price at which the user is willing to sell the token. This value is provided in the smallest unit of the token (e.g., wei for Ethereum). |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/NftOwnersApi.md b/src/Packages/ZkEvmApi/Documentation~/NftOwnersApi.md
deleted file mode 100644
index 86f0d1d80..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/NftOwnersApi.md
+++ /dev/null
@@ -1,316 +0,0 @@
-# Immutable.Api.ZkEvm.Api.NftOwnersApi
-
-All URIs are relative to *https://api.sandbox.immutable.com*
-
-| Method | HTTP request | Description |
-|--------|--------------|-------------|
-| [**ListAllNFTOwners**](NftOwnersApi.md#listallnftowners) | **GET** /v1/chains/{chain_name}/nft-owners | List all NFT owners |
-| [**ListNFTOwners**](NftOwnersApi.md#listnftowners) | **GET** /v1/chains/{chain_name}/collections/{contract_address}/nfts/{token_id}/owners | List NFT owners by token ID |
-| [**ListOwnersByContractAddress**](NftOwnersApi.md#listownersbycontractaddress) | **GET** /v1/chains/{chain_name}/collections/{contract_address}/owners | List owners by contract address |
-
-
-# **ListAllNFTOwners**
-> ListNFTOwnersResult ListAllNFTOwners (string chainName, DateTime? fromUpdatedAt = null, string? pageCursor = null, int? pageSize = null)
-
-List all NFT owners
-
-List all NFT owners on a chain
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListAllNFTOwnersExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new NftOwnersApi(config);
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var fromUpdatedAt = 2022-08-16T17:43:26.991388Z; // DateTime? | Datetime to use as the oldest updated timestamp (optional)
- var pageCursor = "pageCursor_example"; // string? | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- var pageSize = 100; // int? | Maximum number of items to return (optional) (default to 100)
-
- try
- {
- // List all NFT owners
- ListNFTOwnersResult result = apiInstance.ListAllNFTOwners(chainName, fromUpdatedAt, pageCursor, pageSize);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling NftOwnersApi.ListAllNFTOwners: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListAllNFTOwnersWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // List all NFT owners
- ApiResponse response = apiInstance.ListAllNFTOwnersWithHttpInfo(chainName, fromUpdatedAt, pageCursor, pageSize);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling NftOwnersApi.ListAllNFTOwnersWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | The name of chain | |
-| **fromUpdatedAt** | **DateTime?** | Datetime to use as the oldest updated timestamp | [optional] |
-| **pageCursor** | **string?** | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-| **pageSize** | **int?** | Maximum number of items to return | [optional] [default to 100] |
-
-### Return type
-
-[**ListNFTOwnersResult**](ListNFTOwnersResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **ListNFTOwners**
-> ListNFTOwnersResult ListNFTOwners (string contractAddress, string tokenId, string chainName, string? pageCursor = null, int? pageSize = null)
-
-List NFT owners by token ID
-
-List NFT owners by token ID
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListNFTOwnersExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new NftOwnersApi(config);
- var contractAddress = 0x8a90cab2b38dba80c64b7734e58ee1db38b8992e; // string | The address of contract
- var tokenId = 1; // string | An `uint256` token id as string
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var pageCursor = "pageCursor_example"; // string? | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- var pageSize = 100; // int? | Maximum number of items to return (optional) (default to 100)
-
- try
- {
- // List NFT owners by token ID
- ListNFTOwnersResult result = apiInstance.ListNFTOwners(contractAddress, tokenId, chainName, pageCursor, pageSize);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling NftOwnersApi.ListNFTOwners: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListNFTOwnersWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // List NFT owners by token ID
- ApiResponse response = apiInstance.ListNFTOwnersWithHttpInfo(contractAddress, tokenId, chainName, pageCursor, pageSize);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling NftOwnersApi.ListNFTOwnersWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **contractAddress** | **string** | The address of contract | |
-| **tokenId** | **string** | An `uint256` token id as string | |
-| **chainName** | **string** | The name of chain | |
-| **pageCursor** | **string?** | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-| **pageSize** | **int?** | Maximum number of items to return | [optional] [default to 100] |
-
-### Return type
-
-[**ListNFTOwnersResult**](ListNFTOwnersResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **ListOwnersByContractAddress**
-> ListCollectionOwnersResult ListOwnersByContractAddress (string contractAddress, string chainName, List? accountAddress = null, DateTime? fromUpdatedAt = null, string? pageCursor = null, int? pageSize = null)
-
-List owners by contract address
-
-List owners by contract address
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListOwnersByContractAddressExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new NftOwnersApi(config);
- var contractAddress = 0x8a90cab2b38dba80c64b7734e58ee1db38b8992e; // string | The address of contract
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var accountAddress = new List?(); // List? | List of account addresses to filter by (optional)
- var fromUpdatedAt = 2022-08-16T17:43:26.991388Z; // DateTime? | Datetime to use as the oldest updated timestamp (optional)
- var pageCursor = "pageCursor_example"; // string? | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- var pageSize = 100; // int? | Maximum number of items to return (optional) (default to 100)
-
- try
- {
- // List owners by contract address
- ListCollectionOwnersResult result = apiInstance.ListOwnersByContractAddress(contractAddress, chainName, accountAddress, fromUpdatedAt, pageCursor, pageSize);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling NftOwnersApi.ListOwnersByContractAddress: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListOwnersByContractAddressWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // List owners by contract address
- ApiResponse response = apiInstance.ListOwnersByContractAddressWithHttpInfo(contractAddress, chainName, accountAddress, fromUpdatedAt, pageCursor, pageSize);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling NftOwnersApi.ListOwnersByContractAddressWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **contractAddress** | **string** | The address of contract | |
-| **chainName** | **string** | The name of chain | |
-| **accountAddress** | [**List<string>?**](string.md) | List of account addresses to filter by | [optional] |
-| **fromUpdatedAt** | **DateTime?** | Datetime to use as the oldest updated timestamp | [optional] |
-| **pageCursor** | **string?** | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-| **pageSize** | **int?** | Maximum number of items to return | [optional] [default to 100] |
-
-### Return type
-
-[**ListCollectionOwnersResult**](ListCollectionOwnersResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/NftsApi.md b/src/Packages/ZkEvmApi/Documentation~/NftsApi.md
deleted file mode 100644
index eb7b07670..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/NftsApi.md
+++ /dev/null
@@ -1,743 +0,0 @@
-# Immutable.Api.ZkEvm.Api.NftsApi
-
-All URIs are relative to *https://api.sandbox.immutable.com*
-
-| Method | HTTP request | Description |
-|--------|--------------|-------------|
-| [**CreateMintRequest**](NftsApi.md#createmintrequest) | **POST** /v1/chains/{chain_name}/collections/{contract_address}/nfts/mint-requests | Mint NFTs |
-| [**GetMintRequest**](NftsApi.md#getmintrequest) | **GET** /v1/chains/{chain_name}/collections/{contract_address}/nfts/mint-requests/{reference_id} | Get mint request by reference ID |
-| [**GetNFT**](NftsApi.md#getnft) | **GET** /v1/chains/{chain_name}/collections/{contract_address}/nfts/{token_id} | Get NFT by token ID |
-| [**ListAllNFTs**](NftsApi.md#listallnfts) | **GET** /v1/chains/{chain_name}/nfts | List all NFTs |
-| [**ListMintRequests**](NftsApi.md#listmintrequests) | **GET** /v1/chains/{chain_name}/collections/{contract_address}/nfts/mint-requests | List mint requests |
-| [**ListNFTs**](NftsApi.md#listnfts) | **GET** /v1/chains/{chain_name}/collections/{contract_address}/nfts | List NFTs by contract address |
-| [**ListNFTsByAccountAddress**](NftsApi.md#listnftsbyaccountaddress) | **GET** /v1/chains/{chain_name}/accounts/{account_address}/nfts | List NFTs by account address |
-
-
-# **CreateMintRequest**
-> CreateMintRequestResult CreateMintRequest (string contractAddress, string chainName, CreateMintRequestRequest createMintRequestRequest)
-
-Mint NFTs
-
-Create a mint request to mint a set of NFTs for a given collection
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class CreateMintRequestExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- // Configure API key authorization: ImmutableApiKey
- config.AddApiKey("x-immutable-api-key", "YOUR_API_KEY");
- // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
- // config.AddApiKeyPrefix("x-immutable-api-key", "Bearer");
-
- var apiInstance = new NftsApi(config);
- var contractAddress = 0x8a90cab2b38dba80c64b7734e58ee1db38b8992e; // string | The address of contract
- var chainName = "chainName_example"; // string | The name of chain
- var createMintRequestRequest = new CreateMintRequestRequest(); // CreateMintRequestRequest | Create Mint Request Body
-
- try
- {
- // Mint NFTs
- CreateMintRequestResult result = apiInstance.CreateMintRequest(contractAddress, chainName, createMintRequestRequest);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling NftsApi.CreateMintRequest: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the CreateMintRequestWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Mint NFTs
- ApiResponse response = apiInstance.CreateMintRequestWithHttpInfo(contractAddress, chainName, createMintRequestRequest);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling NftsApi.CreateMintRequestWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **contractAddress** | **string** | The address of contract | |
-| **chainName** | **string** | The name of chain | |
-| **createMintRequestRequest** | [**CreateMintRequestRequest**](CreateMintRequestRequest.md) | Create Mint Request Body | |
-
-### Return type
-
-[**CreateMintRequestResult**](CreateMintRequestResult.md)
-
-### Authorization
-
-[ImmutableApiKey](../README.md#ImmutableApiKey)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **202** | Accepted | * imx-mint-requests-limit -
* imx-mint-requests-limit-reset -
* imx-remaining-mint-requests -
* imx-mint-requests-retry-after -
|
-| **400** | Bad Request (400) | - |
-| **401** | Unauthorised Request (401) | - |
-| **403** | Forbidden Request (403) | - |
-| **404** | The specified resource was not found (404) | - |
-| **409** | Conflict (409) | - |
-| **429** | Too Many mint requests (429) | * imx-mint-requests-limit -
* imx-mint-requests-limit-reset -
* imx-remaining-mint-requests -
* imx-mint-requests-retry-after -
* Retry-After -
|
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **GetMintRequest**
-> ListMintRequestsResult GetMintRequest (string contractAddress, string chainName, string referenceId)
-
-Get mint request by reference ID
-
-Retrieve the status of a mint request identified by its reference_id
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class GetMintRequestExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- // Configure API key authorization: ImmutableApiKey
- config.AddApiKey("x-immutable-api-key", "YOUR_API_KEY");
- // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
- // config.AddApiKeyPrefix("x-immutable-api-key", "Bearer");
-
- var apiInstance = new NftsApi(config);
- var contractAddress = 0x8a90cab2b38dba80c64b7734e58ee1db38b8992e; // string | The address of contract
- var chainName = "chainName_example"; // string | The name of chain
- var referenceId = 67f7d464-b8f0-4f6a-9a3b-8d3cb4a21af0; // string | The id of the mint request
-
- try
- {
- // Get mint request by reference ID
- ListMintRequestsResult result = apiInstance.GetMintRequest(contractAddress, chainName, referenceId);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling NftsApi.GetMintRequest: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the GetMintRequestWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Get mint request by reference ID
- ApiResponse response = apiInstance.GetMintRequestWithHttpInfo(contractAddress, chainName, referenceId);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling NftsApi.GetMintRequestWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **contractAddress** | **string** | The address of contract | |
-| **chainName** | **string** | The name of chain | |
-| **referenceId** | **string** | The id of the mint request | |
-
-### Return type
-
-[**ListMintRequestsResult**](ListMintRequestsResult.md)
-
-### Authorization
-
-[ImmutableApiKey](../README.md#ImmutableApiKey)
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **401** | Unauthorised Request (401) | - |
-| **403** | Forbidden Request (403) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **GetNFT**
-> GetNFTResult GetNFT (string contractAddress, string tokenId, string chainName)
-
-Get NFT by token ID
-
-Get NFT by token ID
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class GetNFTExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new NftsApi(config);
- var contractAddress = 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3; // string | The address of NFT contract
- var tokenId = 1; // string | An `uint256` token id as string
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
-
- try
- {
- // Get NFT by token ID
- GetNFTResult result = apiInstance.GetNFT(contractAddress, tokenId, chainName);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling NftsApi.GetNFT: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the GetNFTWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Get NFT by token ID
- ApiResponse response = apiInstance.GetNFTWithHttpInfo(contractAddress, tokenId, chainName);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling NftsApi.GetNFTWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **contractAddress** | **string** | The address of NFT contract | |
-| **tokenId** | **string** | An `uint256` token id as string | |
-| **chainName** | **string** | The name of chain | |
-
-### Return type
-
-[**GetNFTResult**](GetNFTResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **ListAllNFTs**
-> ListNFTsResult ListAllNFTs (string chainName, DateTime? fromUpdatedAt = null, string? pageCursor = null, int? pageSize = null)
-
-List all NFTs
-
-List all NFTs on a chain
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListAllNFTsExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new NftsApi(config);
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var fromUpdatedAt = 2022-08-16T17:43:26.991388Z; // DateTime? | Datetime to use as the oldest updated timestamp (optional)
- var pageCursor = "pageCursor_example"; // string? | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- var pageSize = 100; // int? | Maximum number of items to return (optional) (default to 100)
-
- try
- {
- // List all NFTs
- ListNFTsResult result = apiInstance.ListAllNFTs(chainName, fromUpdatedAt, pageCursor, pageSize);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling NftsApi.ListAllNFTs: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListAllNFTsWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // List all NFTs
- ApiResponse response = apiInstance.ListAllNFTsWithHttpInfo(chainName, fromUpdatedAt, pageCursor, pageSize);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling NftsApi.ListAllNFTsWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | The name of chain | |
-| **fromUpdatedAt** | **DateTime?** | Datetime to use as the oldest updated timestamp | [optional] |
-| **pageCursor** | **string?** | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-| **pageSize** | **int?** | Maximum number of items to return | [optional] [default to 100] |
-
-### Return type
-
-[**ListNFTsResult**](ListNFTsResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **ListMintRequests**
-> ListMintRequestsResult ListMintRequests (string contractAddress, string chainName, string? pageCursor = null, int? pageSize = null, MintRequestStatus? status = null)
-
-List mint requests
-
-Retrieve the status of all mints for a given contract address
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListMintRequestsExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- // Configure API key authorization: ImmutableApiKey
- config.AddApiKey("x-immutable-api-key", "YOUR_API_KEY");
- // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
- // config.AddApiKeyPrefix("x-immutable-api-key", "Bearer");
-
- var apiInstance = new NftsApi(config);
- var contractAddress = 0x8a90cab2b38dba80c64b7734e58ee1db38b8992e; // string | The address of contract
- var chainName = "chainName_example"; // string | The name of chain
- var pageCursor = "pageCursor_example"; // string? | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- var pageSize = 100; // int? | Maximum number of items to return (optional) (default to 100)
- var status = new MintRequestStatus?(); // MintRequestStatus? | The status of the mint request (optional)
-
- try
- {
- // List mint requests
- ListMintRequestsResult result = apiInstance.ListMintRequests(contractAddress, chainName, pageCursor, pageSize, status);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling NftsApi.ListMintRequests: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListMintRequestsWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // List mint requests
- ApiResponse response = apiInstance.ListMintRequestsWithHttpInfo(contractAddress, chainName, pageCursor, pageSize, status);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling NftsApi.ListMintRequestsWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **contractAddress** | **string** | The address of contract | |
-| **chainName** | **string** | The name of chain | |
-| **pageCursor** | **string?** | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-| **pageSize** | **int?** | Maximum number of items to return | [optional] [default to 100] |
-| **status** | [**MintRequestStatus?**](MintRequestStatus?.md) | The status of the mint request | [optional] |
-
-### Return type
-
-[**ListMintRequestsResult**](ListMintRequestsResult.md)
-
-### Authorization
-
-[ImmutableApiKey](../README.md#ImmutableApiKey)
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **401** | Unauthorised Request (401) | - |
-| **403** | Forbidden Request (403) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **ListNFTs**
-> ListNFTsResult ListNFTs (string contractAddress, string chainName, List? tokenId = null, DateTime? fromUpdatedAt = null, string? pageCursor = null, int? pageSize = null)
-
-List NFTs by contract address
-
-List NFTs by contract address
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListNFTsExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new NftsApi(config);
- var contractAddress = 0x8a90cab2b38dba80c64b7734e58ee1db38b8992e; // string | Contract address
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var tokenId = new List?(); // List? | List of token IDs to filter by (optional)
- var fromUpdatedAt = 2022-08-16T17:43:26.991388Z; // DateTime? | Datetime to use as the oldest updated timestamp (optional)
- var pageCursor = "pageCursor_example"; // string? | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- var pageSize = 100; // int? | Maximum number of items to return (optional) (default to 100)
-
- try
- {
- // List NFTs by contract address
- ListNFTsResult result = apiInstance.ListNFTs(contractAddress, chainName, tokenId, fromUpdatedAt, pageCursor, pageSize);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling NftsApi.ListNFTs: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListNFTsWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // List NFTs by contract address
- ApiResponse response = apiInstance.ListNFTsWithHttpInfo(contractAddress, chainName, tokenId, fromUpdatedAt, pageCursor, pageSize);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling NftsApi.ListNFTsWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **contractAddress** | **string** | Contract address | |
-| **chainName** | **string** | The name of chain | |
-| **tokenId** | [**List<string>?**](string.md) | List of token IDs to filter by | [optional] |
-| **fromUpdatedAt** | **DateTime?** | Datetime to use as the oldest updated timestamp | [optional] |
-| **pageCursor** | **string?** | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-| **pageSize** | **int?** | Maximum number of items to return | [optional] [default to 100] |
-
-### Return type
-
-[**ListNFTsResult**](ListNFTsResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **ListNFTsByAccountAddress**
-> ListNFTsByOwnerResult ListNFTsByAccountAddress (string accountAddress, string chainName, string? contractAddress = null, List? tokenId = null, DateTime? fromUpdatedAt = null, string? pageCursor = null, int? pageSize = null)
-
-List NFTs by account address
-
-List NFTs by account address
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListNFTsByAccountAddressExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new NftsApi(config);
- var accountAddress = 0xe9b00a87700f660e46b6f5deaa1232836bcc07d3; // string | Account address
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var contractAddress = 0x8a90cab2b38dba80c64b7734e58ee1db38b8992e; // string? | The address of contract (optional)
- var tokenId = new List?(); // List? | List of token IDs to filter by (optional)
- var fromUpdatedAt = 2022-08-16T17:43:26.991388Z; // DateTime? | Datetime to use as the oldest updated timestamp (optional)
- var pageCursor = "pageCursor_example"; // string? | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- var pageSize = 100; // int? | Maximum number of items to return (optional) (default to 100)
-
- try
- {
- // List NFTs by account address
- ListNFTsByOwnerResult result = apiInstance.ListNFTsByAccountAddress(accountAddress, chainName, contractAddress, tokenId, fromUpdatedAt, pageCursor, pageSize);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling NftsApi.ListNFTsByAccountAddress: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListNFTsByAccountAddressWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // List NFTs by account address
- ApiResponse response = apiInstance.ListNFTsByAccountAddressWithHttpInfo(accountAddress, chainName, contractAddress, tokenId, fromUpdatedAt, pageCursor, pageSize);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling NftsApi.ListNFTsByAccountAddressWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **accountAddress** | **string** | Account address | |
-| **chainName** | **string** | The name of chain | |
-| **contractAddress** | **string?** | The address of contract | [optional] |
-| **tokenId** | [**List<string>?**](string.md) | List of token IDs to filter by | [optional] |
-| **fromUpdatedAt** | **DateTime?** | Datetime to use as the oldest updated timestamp | [optional] |
-| **pageCursor** | **string?** | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-| **pageSize** | **int?** | Maximum number of items to return | [optional] [default to 100] |
-
-### Return type
-
-[**ListNFTsByOwnerResult**](ListNFTsByOwnerResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/OperatorAllowlistContractStatus.md b/src/Packages/ZkEvmApi/Documentation~/OperatorAllowlistContractStatus.md
deleted file mode 100644
index 5e15c97b3..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/OperatorAllowlistContractStatus.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# Immutable.Api.ZkEvm.Model.OperatorAllowlistContractStatus
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Chain** | [**Chain**](Chain.md) | |
-**ContractAddress** | **string** | The address of the contract |
-**Status** | **OperatorAllowlistStatus** | |
-**Details** | [**OperatorAllowlistStatusDetails**](OperatorAllowlistStatusDetails.md) | |
-**CreatedAt** | **DateTime** | When the contract status was created |
-**CreatedBy** | **string** | Who created the status |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/OperatorAllowlistContractStatusInternal.md b/src/Packages/ZkEvmApi/Documentation~/OperatorAllowlistContractStatusInternal.md
deleted file mode 100644
index 13e8be6b6..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/OperatorAllowlistContractStatusInternal.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# Immutable.Api.ZkEvm.Model.OperatorAllowlistContractStatusInternal
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Chain** | [**Chain**](Chain.md) | |
-**ContractAddress** | **string** | The address of the contract |
-**Status** | **OperatorAllowlistStatus** | |
-**Details** | [**OperatorAllowlistStatusDetails**](OperatorAllowlistStatusDetails.md) | |
-**CreatedAt** | **DateTime** | When the contract status was created |
-**CreatedBy** | **string** | Who created the status |
-**OrgName** | **string** | The name of the organisation associated with this contract |
-**OrgTier** | **OrganisationTier** | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/OperatorAllowlistStatus.md b/src/Packages/ZkEvmApi/Documentation~/OperatorAllowlistStatus.md
deleted file mode 100644
index a818086ed..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/OperatorAllowlistStatus.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.OperatorAllowlistStatus
-The status of a contract on the operator allowlist
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/OperatorAllowlistStatusDetails.md b/src/Packages/ZkEvmApi/Documentation~/OperatorAllowlistStatusDetails.md
deleted file mode 100644
index b36ca5f09..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/OperatorAllowlistStatusDetails.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Immutable.Api.ZkEvm.Model.OperatorAllowlistStatusDetails
-The operator allowlist status details
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Purpose** | **string** | Reason this contract needs to be added |
-**IsSettlementContract** | **bool** | Attestation of whether this contract is a settlement contract |
-**Reason** | **string** | Why this action was performed |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/OperatorAllowlistStatusRequested.md b/src/Packages/ZkEvmApi/Documentation~/OperatorAllowlistStatusRequested.md
deleted file mode 100644
index 96df3eda5..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/OperatorAllowlistStatusRequested.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.OperatorAllowlistStatusRequested
-The request details
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Purpose** | **string** | Reason this contract needs to be added |
-**IsSettlementContract** | **bool** | Attestation of whether this contract is a settlement contract |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/OperatorAllowlistStatusUpdated.md b/src/Packages/ZkEvmApi/Documentation~/OperatorAllowlistStatusUpdated.md
deleted file mode 100644
index c130cc930..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/OperatorAllowlistStatusUpdated.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.OperatorAllowlistStatusUpdated
-The update details
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Reason** | **string** | Why this action was performed |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Order.md b/src/Packages/ZkEvmApi/Documentation~/Order.md
deleted file mode 100644
index f6986b2a3..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Order.md
+++ /dev/null
@@ -1,26 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Order
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**AccountAddress** | **string** | |
-**Buy** | [**List<Item>**](Item.md) | |
-**Fees** | [**List<Fee>**](Fee.md) | |
-**Chain** | [**Chain**](Chain.md) | |
-**CreatedAt** | **DateTime** | Time the Order is created |
-**EndAt** | **DateTime** | Time after which the Order is considered expired |
-**Id** | **string** | Global Order identifier |
-**OrderHash** | **string** | |
-**ProtocolData** | [**ProtocolData**](ProtocolData.md) | |
-**Salt** | **string** | A random value added to the create Order request |
-**Sell** | [**List<Item>**](Item.md) | |
-**Signature** | **string** | Digital signature generated by the user for the specific Order |
-**StartAt** | **DateTime** | Time after which Order is considered active |
-**Status** | [**OrderStatus**](OrderStatus.md) | |
-**Type** | **string** | Order type |
-**UpdatedAt** | **DateTime** | Time the Order is last updated |
-**FillStatus** | [**FillStatus**](FillStatus.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/OrderStatus.md b/src/Packages/ZkEvmApi/Documentation~/OrderStatus.md
deleted file mode 100644
index e2bae8960..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/OrderStatus.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# Immutable.Api.ZkEvm.Model.OrderStatus
-The Order status
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Name** | **string** | A terminal order status indicating that an order cannot be fulfilled due to expiry. |
-**Pending** | **bool** | Whether the cancellation of the order is pending |
-**CancellationType** | **string** | Whether the cancellation was done on-chain or off-chain or as a result of an underfunded account |
-**Evaluated** | **bool** | Whether the order has been evaluated after its creation |
-**Started** | **bool** | Whether the order has reached its specified start time |
-**SufficientApprovals** | **bool** | Whether the order offerer has sufficient approvals |
-**SufficientBalances** | **bool** | Whether the order offerer still has sufficient balance to complete the order |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/OrderStatusName.md b/src/Packages/ZkEvmApi/Documentation~/OrderStatusName.md
deleted file mode 100644
index 370515b2d..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/OrderStatusName.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.OrderStatusName
-The Order status
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/OrdersApi.md b/src/Packages/ZkEvmApi/Documentation~/OrdersApi.md
deleted file mode 100644
index c3fa7ed39..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/OrdersApi.md
+++ /dev/null
@@ -1,1343 +0,0 @@
-# Immutable.Api.ZkEvm.Api.OrdersApi
-
-All URIs are relative to *https://api.sandbox.immutable.com*
-
-| Method | HTTP request | Description |
-|--------|--------------|-------------|
-| [**CancelOrders**](OrdersApi.md#cancelorders) | **POST** /v1/chains/{chain_name}/orders/cancel | Cancel one or more orders |
-| [**CreateBid**](OrdersApi.md#createbid) | **POST** /v1/chains/{chain_name}/orders/bids | Create a bid |
-| [**CreateCollectionBid**](OrdersApi.md#createcollectionbid) | **POST** /v1/chains/{chain_name}/orders/collection-bids | Create a collection bid |
-| [**CreateListing**](OrdersApi.md#createlisting) | **POST** /v1/chains/{chain_name}/orders/listings | Create a listing |
-| [**FulfillmentData**](OrdersApi.md#fulfillmentdata) | **POST** /v1/chains/{chain_name}/orders/fulfillment-data | Retrieve fulfillment data for orders |
-| [**GetBid**](OrdersApi.md#getbid) | **GET** /v1/chains/{chain_name}/orders/bids/{bid_id} | Get a single bid by ID |
-| [**GetCollectionBid**](OrdersApi.md#getcollectionbid) | **GET** /v1/chains/{chain_name}/orders/collection-bids/{collection_bid_id} | Get a single collection bid by ID |
-| [**GetListing**](OrdersApi.md#getlisting) | **GET** /v1/chains/{chain_name}/orders/listings/{listing_id} | Get a single listing by ID |
-| [**GetTrade**](OrdersApi.md#gettrade) | **GET** /v1/chains/{chain_name}/trades/{trade_id} | Get a single trade by ID |
-| [**ListBids**](OrdersApi.md#listbids) | **GET** /v1/chains/{chain_name}/orders/bids | List all bids |
-| [**ListCollectionBids**](OrdersApi.md#listcollectionbids) | **GET** /v1/chains/{chain_name}/orders/collection-bids | List all collection bids |
-| [**ListListings**](OrdersApi.md#listlistings) | **GET** /v1/chains/{chain_name}/orders/listings | List all listings |
-| [**ListTrades**](OrdersApi.md#listtrades) | **GET** /v1/chains/{chain_name}/trades | List all trades |
-
-
-# **CancelOrders**
-> CancelOrdersResult CancelOrders (string chainName, CancelOrdersRequestBody cancelOrdersRequestBody)
-
-Cancel one or more orders
-
-Cancel one or more orders
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class CancelOrdersExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new OrdersApi(config);
- var chainName = "chainName_example"; // string |
- var cancelOrdersRequestBody = new CancelOrdersRequestBody(); // CancelOrdersRequestBody |
-
- try
- {
- // Cancel one or more orders
- CancelOrdersResult result = apiInstance.CancelOrders(chainName, cancelOrdersRequestBody);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling OrdersApi.CancelOrders: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the CancelOrdersWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Cancel one or more orders
- ApiResponse response = apiInstance.CancelOrdersWithHttpInfo(chainName, cancelOrdersRequestBody);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling OrdersApi.CancelOrdersWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | | |
-| **cancelOrdersRequestBody** | [**CancelOrdersRequestBody**](CancelOrdersRequestBody.md) | | |
-
-### Return type
-
-[**CancelOrdersResult**](CancelOrdersResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | Orders cancellation response. | - |
-| **400** | Bad Request (400) | - |
-| **401** | Unauthorised Request (401) | - |
-| **404** | The specified resource was not found (404) | - |
-| **429** | Too Many Requests (429) | * Retry-After -
|
-| **500** | Internal Server Error (500) | - |
-| **501** | Not Implemented Error (501) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **CreateBid**
-> BidResult CreateBid (string chainName, CreateBidRequestBody createBidRequestBody)
-
-Create a bid
-
-Create a bid
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class CreateBidExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new OrdersApi(config);
- var chainName = "chainName_example"; // string |
- var createBidRequestBody = new CreateBidRequestBody(); // CreateBidRequestBody |
-
- try
- {
- // Create a bid
- BidResult result = apiInstance.CreateBid(chainName, createBidRequestBody);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling OrdersApi.CreateBid: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the CreateBidWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Create a bid
- ApiResponse response = apiInstance.CreateBidWithHttpInfo(chainName, createBidRequestBody);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling OrdersApi.CreateBidWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | | |
-| **createBidRequestBody** | [**CreateBidRequestBody**](CreateBidRequestBody.md) | | |
-
-### Return type
-
-[**BidResult**](BidResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **201** | Created response. | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-| **501** | Not Implemented Error (501) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **CreateCollectionBid**
-> CollectionBidResult CreateCollectionBid (string chainName, CreateCollectionBidRequestBody createCollectionBidRequestBody)
-
-Create a collection bid
-
-Create a collection bid
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class CreateCollectionBidExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new OrdersApi(config);
- var chainName = "chainName_example"; // string |
- var createCollectionBidRequestBody = new CreateCollectionBidRequestBody(); // CreateCollectionBidRequestBody |
-
- try
- {
- // Create a collection bid
- CollectionBidResult result = apiInstance.CreateCollectionBid(chainName, createCollectionBidRequestBody);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling OrdersApi.CreateCollectionBid: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the CreateCollectionBidWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Create a collection bid
- ApiResponse response = apiInstance.CreateCollectionBidWithHttpInfo(chainName, createCollectionBidRequestBody);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling OrdersApi.CreateCollectionBidWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | | |
-| **createCollectionBidRequestBody** | [**CreateCollectionBidRequestBody**](CreateCollectionBidRequestBody.md) | | |
-
-### Return type
-
-[**CollectionBidResult**](CollectionBidResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **201** | Created response. | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-| **501** | Not Implemented Error (501) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **CreateListing**
-> ListingResult CreateListing (string chainName, CreateListingRequestBody createListingRequestBody)
-
-Create a listing
-
-Create a listing
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class CreateListingExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new OrdersApi(config);
- var chainName = "chainName_example"; // string |
- var createListingRequestBody = new CreateListingRequestBody(); // CreateListingRequestBody |
-
- try
- {
- // Create a listing
- ListingResult result = apiInstance.CreateListing(chainName, createListingRequestBody);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling OrdersApi.CreateListing: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the CreateListingWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Create a listing
- ApiResponse response = apiInstance.CreateListingWithHttpInfo(chainName, createListingRequestBody);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling OrdersApi.CreateListingWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | | |
-| **createListingRequestBody** | [**CreateListingRequestBody**](CreateListingRequestBody.md) | | |
-
-### Return type
-
-[**ListingResult**](ListingResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **201** | Created response. | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **FulfillmentData**
-> FulfillmentData200Response FulfillmentData (string chainName, List fulfillmentDataRequest)
-
-Retrieve fulfillment data for orders
-
-Retrieve signed fulfillment data based on the list of order IDs and corresponding fees.
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class FulfillmentDataExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new OrdersApi(config);
- var chainName = "chainName_example"; // string |
- var fulfillmentDataRequest = new List(); // List |
-
- try
- {
- // Retrieve fulfillment data for orders
- FulfillmentData200Response result = apiInstance.FulfillmentData(chainName, fulfillmentDataRequest);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling OrdersApi.FulfillmentData: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the FulfillmentDataWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Retrieve fulfillment data for orders
- ApiResponse response = apiInstance.FulfillmentDataWithHttpInfo(chainName, fulfillmentDataRequest);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling OrdersApi.FulfillmentDataWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | | |
-| **fulfillmentDataRequest** | [**List<FulfillmentDataRequest>**](FulfillmentDataRequest.md) | | |
-
-### Return type
-
-[**FulfillmentData200Response**](FulfillmentData200Response.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | Successful response | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **GetBid**
-> BidResult GetBid (string chainName, Guid bidId)
-
-Get a single bid by ID
-
-Get a single bid by ID
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class GetBidExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new OrdersApi(config);
- var chainName = "chainName_example"; // string |
- var bidId = 018792c9-4ad7-8ec4-4038-9e05c598534a; // Guid | Global Bid identifier
-
- try
- {
- // Get a single bid by ID
- BidResult result = apiInstance.GetBid(chainName, bidId);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling OrdersApi.GetBid: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the GetBidWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Get a single bid by ID
- ApiResponse response = apiInstance.GetBidWithHttpInfo(chainName, bidId);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling OrdersApi.GetBidWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | | |
-| **bidId** | **Guid** | Global Bid identifier | |
-
-### Return type
-
-[**BidResult**](BidResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | OK response. | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **GetCollectionBid**
-> CollectionBidResult GetCollectionBid (string chainName, Guid collectionBidId)
-
-Get a single collection bid by ID
-
-Get a single collection bid by ID
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class GetCollectionBidExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new OrdersApi(config);
- var chainName = "chainName_example"; // string |
- var collectionBidId = 018792c9-4ad7-8ec4-4038-9e05c598534a; // Guid | Global Collection Bid identifier
-
- try
- {
- // Get a single collection bid by ID
- CollectionBidResult result = apiInstance.GetCollectionBid(chainName, collectionBidId);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling OrdersApi.GetCollectionBid: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the GetCollectionBidWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Get a single collection bid by ID
- ApiResponse response = apiInstance.GetCollectionBidWithHttpInfo(chainName, collectionBidId);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling OrdersApi.GetCollectionBidWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | | |
-| **collectionBidId** | **Guid** | Global Collection Bid identifier | |
-
-### Return type
-
-[**CollectionBidResult**](CollectionBidResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | OK response. | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **GetListing**
-> ListingResult GetListing (string chainName, Guid listingId)
-
-Get a single listing by ID
-
-Get a single listing by ID
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class GetListingExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new OrdersApi(config);
- var chainName = "chainName_example"; // string |
- var listingId = 018792c9-4ad7-8ec4-4038-9e05c598534a; // Guid | Global Order identifier
-
- try
- {
- // Get a single listing by ID
- ListingResult result = apiInstance.GetListing(chainName, listingId);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling OrdersApi.GetListing: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the GetListingWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Get a single listing by ID
- ApiResponse response = apiInstance.GetListingWithHttpInfo(chainName, listingId);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling OrdersApi.GetListingWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | | |
-| **listingId** | **Guid** | Global Order identifier | |
-
-### Return type
-
-[**ListingResult**](ListingResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | OK response. | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **GetTrade**
-> TradeResult GetTrade (string chainName, Guid tradeId)
-
-Get a single trade by ID
-
-Get a single trade by ID
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class GetTradeExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new OrdersApi(config);
- var chainName = "chainName_example"; // string |
- var tradeId = 018792c9-4ad7-8ec4-4038-9e05c598534a; // Guid | Global Trade identifier
-
- try
- {
- // Get a single trade by ID
- TradeResult result = apiInstance.GetTrade(chainName, tradeId);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling OrdersApi.GetTrade: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the GetTradeWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Get a single trade by ID
- ApiResponse response = apiInstance.GetTradeWithHttpInfo(chainName, tradeId);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling OrdersApi.GetTradeWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | | |
-| **tradeId** | **Guid** | Global Trade identifier | |
-
-### Return type
-
-[**TradeResult**](TradeResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | OK response. | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **ListBids**
-> ListBidsResult ListBids (string chainName, OrderStatusName? status = null, string? buyItemContractAddress = null, string? sellItemContractAddress = null, string? accountAddress = null, Guid? buyItemMetadataId = null, string? buyItemTokenId = null, DateTime? fromUpdatedAt = null, int? pageSize = null, string? sortBy = null, string? sortDirection = null, string? pageCursor = null)
-
-List all bids
-
-List all bids
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListBidsExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new OrdersApi(config);
- var chainName = "chainName_example"; // string |
- var status = new OrderStatusName?(); // OrderStatusName? | Order status to filter by (optional)
- var buyItemContractAddress = 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266; // string? | Buy item contract address to filter by (optional)
- var sellItemContractAddress = 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266; // string? | Sell item contract address to filter by (optional)
- var accountAddress = 0xc49Fd6e51aad88F6F4ce6aB8827279cffFb92266; // string? | The account address of the user who created the bid (optional)
- var buyItemMetadataId = 020792c9-4ad7-8ec4-4038-9e05c598535b; // Guid? | The metadata_id of the buy item (optional)
- var buyItemTokenId = 1; // string? | buy item token identifier to filter by (optional)
- var fromUpdatedAt = 2022-03-09T05:00:50.520Z; // DateTime? | From updated at including given date (optional)
- var pageSize = 100; // int? | Maximum number of orders to return per page (optional) (default to 100)
- var sortBy = created_at; // string? | Order field to sort by. `sell_item_amount` sorts by per token price, for example if 10eth is offered for 5 ERC1155 items, it’s sorted as 2eth for `sell_item_amount`. (optional)
- var sortDirection = asc; // string? | Ascending or descending direction for sort (optional)
- var pageCursor = "pageCursor_example"; // string? | Page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
-
- try
- {
- // List all bids
- ListBidsResult result = apiInstance.ListBids(chainName, status, buyItemContractAddress, sellItemContractAddress, accountAddress, buyItemMetadataId, buyItemTokenId, fromUpdatedAt, pageSize, sortBy, sortDirection, pageCursor);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling OrdersApi.ListBids: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListBidsWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // List all bids
- ApiResponse response = apiInstance.ListBidsWithHttpInfo(chainName, status, buyItemContractAddress, sellItemContractAddress, accountAddress, buyItemMetadataId, buyItemTokenId, fromUpdatedAt, pageSize, sortBy, sortDirection, pageCursor);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling OrdersApi.ListBidsWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | | |
-| **status** | [**OrderStatusName?**](OrderStatusName?.md) | Order status to filter by | [optional] |
-| **buyItemContractAddress** | **string?** | Buy item contract address to filter by | [optional] |
-| **sellItemContractAddress** | **string?** | Sell item contract address to filter by | [optional] |
-| **accountAddress** | **string?** | The account address of the user who created the bid | [optional] |
-| **buyItemMetadataId** | **Guid?** | The metadata_id of the buy item | [optional] |
-| **buyItemTokenId** | **string?** | buy item token identifier to filter by | [optional] |
-| **fromUpdatedAt** | **DateTime?** | From updated at including given date | [optional] |
-| **pageSize** | **int?** | Maximum number of orders to return per page | [optional] [default to 100] |
-| **sortBy** | **string?** | Order field to sort by. `sell_item_amount` sorts by per token price, for example if 10eth is offered for 5 ERC1155 items, it’s sorted as 2eth for `sell_item_amount`. | [optional] |
-| **sortDirection** | **string?** | Ascending or descending direction for sort | [optional] |
-| **pageCursor** | **string?** | Page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-
-### Return type
-
-[**ListBidsResult**](ListBidsResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | OK response. | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **ListCollectionBids**
-> ListCollectionBidsResult ListCollectionBids (string chainName, OrderStatusName? status = null, string? buyItemContractAddress = null, string? sellItemContractAddress = null, string? accountAddress = null, DateTime? fromUpdatedAt = null, int? pageSize = null, string? sortBy = null, string? sortDirection = null, string? pageCursor = null)
-
-List all collection bids
-
-List all collection bids
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListCollectionBidsExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new OrdersApi(config);
- var chainName = "chainName_example"; // string |
- var status = new OrderStatusName?(); // OrderStatusName? | Order status to filter by (optional)
- var buyItemContractAddress = 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266; // string? | Buy item contract address to filter by (optional)
- var sellItemContractAddress = 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266; // string? | Sell item contract address to filter by (optional)
- var accountAddress = 0xc49Fd6e51aad88F6F4ce6aB8827279cffFb92266; // string? | The account address of the user who created the bid (optional)
- var fromUpdatedAt = 2022-03-09T05:00:50.520Z; // DateTime? | From updated at including given date (optional)
- var pageSize = 100; // int? | Maximum number of orders to return per page (optional) (default to 100)
- var sortBy = created_at; // string? | Order field to sort by. `sell_item_amount` sorts by per token price, for example if 10eth is offered for 5 ERC1155 items, it’s sorted as 2eth for `sell_item_amount`. (optional)
- var sortDirection = asc; // string? | Ascending or descending direction for sort (optional)
- var pageCursor = "pageCursor_example"; // string? | Page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
-
- try
- {
- // List all collection bids
- ListCollectionBidsResult result = apiInstance.ListCollectionBids(chainName, status, buyItemContractAddress, sellItemContractAddress, accountAddress, fromUpdatedAt, pageSize, sortBy, sortDirection, pageCursor);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling OrdersApi.ListCollectionBids: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListCollectionBidsWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // List all collection bids
- ApiResponse response = apiInstance.ListCollectionBidsWithHttpInfo(chainName, status, buyItemContractAddress, sellItemContractAddress, accountAddress, fromUpdatedAt, pageSize, sortBy, sortDirection, pageCursor);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling OrdersApi.ListCollectionBidsWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | | |
-| **status** | [**OrderStatusName?**](OrderStatusName?.md) | Order status to filter by | [optional] |
-| **buyItemContractAddress** | **string?** | Buy item contract address to filter by | [optional] |
-| **sellItemContractAddress** | **string?** | Sell item contract address to filter by | [optional] |
-| **accountAddress** | **string?** | The account address of the user who created the bid | [optional] |
-| **fromUpdatedAt** | **DateTime?** | From updated at including given date | [optional] |
-| **pageSize** | **int?** | Maximum number of orders to return per page | [optional] [default to 100] |
-| **sortBy** | **string?** | Order field to sort by. `sell_item_amount` sorts by per token price, for example if 10eth is offered for 5 ERC1155 items, it’s sorted as 2eth for `sell_item_amount`. | [optional] |
-| **sortDirection** | **string?** | Ascending or descending direction for sort | [optional] |
-| **pageCursor** | **string?** | Page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-
-### Return type
-
-[**ListCollectionBidsResult**](ListCollectionBidsResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | OK response. | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **ListListings**
-> ListListingsResult ListListings (string chainName, OrderStatusName? status = null, string? sellItemContractAddress = null, string? buyItemType = null, string? buyItemContractAddress = null, string? accountAddress = null, Guid? sellItemMetadataId = null, string? sellItemTokenId = null, DateTime? fromUpdatedAt = null, int? pageSize = null, string? sortBy = null, string? sortDirection = null, string? pageCursor = null)
-
-List all listings
-
-List all listings
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListListingsExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new OrdersApi(config);
- var chainName = "chainName_example"; // string |
- var status = new OrderStatusName?(); // OrderStatusName? | Order status to filter by (optional)
- var sellItemContractAddress = 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266; // string? | Sell item contract address to filter by (optional)
- var buyItemType = NATIVE; // string? | Buy item type to filter by (optional)
- var buyItemContractAddress = 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266; // string? | Buy item contract address to filter by (optional)
- var accountAddress = 0xc49Fd6e51aad88F6F4ce6aB8827279cffFb92266; // string? | The account address of the user who created the listing (optional)
- var sellItemMetadataId = 020792c9-4ad7-8ec4-4038-9e05c598535b; // Guid? | The metadata_id of the sell item (optional)
- var sellItemTokenId = 1; // string? | Sell item token identifier to filter by (optional)
- var fromUpdatedAt = 2022-03-09T05:00:50.520Z; // DateTime? | From updated at including given date (optional)
- var pageSize = 100; // int? | Maximum number of orders to return per page (optional) (default to 100)
- var sortBy = created_at; // string? | Order field to sort by. `buy_item_amount` sorts by per token price, for example if 5 ERC-1155s are on sale for 10eth, it’s sorted as 2eth for `buy_item_amount`. (optional)
- var sortDirection = asc; // string? | Ascending or descending direction for sort (optional)
- var pageCursor = "pageCursor_example"; // string? | Page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
-
- try
- {
- // List all listings
- ListListingsResult result = apiInstance.ListListings(chainName, status, sellItemContractAddress, buyItemType, buyItemContractAddress, accountAddress, sellItemMetadataId, sellItemTokenId, fromUpdatedAt, pageSize, sortBy, sortDirection, pageCursor);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling OrdersApi.ListListings: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListListingsWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // List all listings
- ApiResponse response = apiInstance.ListListingsWithHttpInfo(chainName, status, sellItemContractAddress, buyItemType, buyItemContractAddress, accountAddress, sellItemMetadataId, sellItemTokenId, fromUpdatedAt, pageSize, sortBy, sortDirection, pageCursor);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling OrdersApi.ListListingsWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | | |
-| **status** | [**OrderStatusName?**](OrderStatusName?.md) | Order status to filter by | [optional] |
-| **sellItemContractAddress** | **string?** | Sell item contract address to filter by | [optional] |
-| **buyItemType** | **string?** | Buy item type to filter by | [optional] |
-| **buyItemContractAddress** | **string?** | Buy item contract address to filter by | [optional] |
-| **accountAddress** | **string?** | The account address of the user who created the listing | [optional] |
-| **sellItemMetadataId** | **Guid?** | The metadata_id of the sell item | [optional] |
-| **sellItemTokenId** | **string?** | Sell item token identifier to filter by | [optional] |
-| **fromUpdatedAt** | **DateTime?** | From updated at including given date | [optional] |
-| **pageSize** | **int?** | Maximum number of orders to return per page | [optional] [default to 100] |
-| **sortBy** | **string?** | Order field to sort by. `buy_item_amount` sorts by per token price, for example if 5 ERC-1155s are on sale for 10eth, it’s sorted as 2eth for `buy_item_amount`. | [optional] |
-| **sortDirection** | **string?** | Ascending or descending direction for sort | [optional] |
-| **pageCursor** | **string?** | Page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-
-### Return type
-
-[**ListListingsResult**](ListListingsResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | OK response. | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **ListTrades**
-> ListTradeResult ListTrades (string chainName, string? accountAddress = null, string? sellItemContractAddress = null, DateTime? fromIndexedAt = null, int? pageSize = null, string? sortBy = null, string? sortDirection = null, string? pageCursor = null)
-
-List all trades
-
-List all trades
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListTradesExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new OrdersApi(config);
- var chainName = "chainName_example"; // string |
- var accountAddress = 0x784578949A4A50DeA641Fb15dd2B11C72E76919a; // string? | (optional)
- var sellItemContractAddress = 0x784578949A4A50DeA641Fb15dd2B11C72E76919a; // string? | (optional)
- var fromIndexedAt = 2022-03-09T05:00:50.520Z; // DateTime? | From indexed at including given date (optional)
- var pageSize = 100; // int? | Maximum number of trades to return per page (optional) (default to 100)
- var sortBy = indexed_at; // string? | Trade field to sort by (optional)
- var sortDirection = asc; // string? | Ascending or descending direction for sort (optional)
- var pageCursor = "pageCursor_example"; // string? | Page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
-
- try
- {
- // List all trades
- ListTradeResult result = apiInstance.ListTrades(chainName, accountAddress, sellItemContractAddress, fromIndexedAt, pageSize, sortBy, sortDirection, pageCursor);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling OrdersApi.ListTrades: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListTradesWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // List all trades
- ApiResponse response = apiInstance.ListTradesWithHttpInfo(chainName, accountAddress, sellItemContractAddress, fromIndexedAt, pageSize, sortBy, sortDirection, pageCursor);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling OrdersApi.ListTradesWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | | |
-| **accountAddress** | **string?** | | [optional] |
-| **sellItemContractAddress** | **string?** | | [optional] |
-| **fromIndexedAt** | **DateTime?** | From indexed at including given date | [optional] |
-| **pageSize** | **int?** | Maximum number of trades to return per page | [optional] [default to 100] |
-| **sortBy** | **string?** | Trade field to sort by | [optional] |
-| **sortDirection** | **string?** | Ascending or descending direction for sort | [optional] |
-| **pageCursor** | **string?** | Page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-
-### Return type
-
-[**ListTradeResult**](ListTradeResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | OK response. | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/OrganisationTier.md b/src/Packages/ZkEvmApi/Documentation~/OrganisationTier.md
deleted file mode 100644
index 3e3ca30a7..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/OrganisationTier.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.OrganisationTier
-The tier of the organisation
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Page.md b/src/Packages/ZkEvmApi/Documentation~/Page.md
deleted file mode 100644
index 04a74ace9..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Page.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Page
-Pagination properties
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**PreviousCursor** | **string** | First item as an encoded string |
-**NextCursor** | **string** | Last item as an encoded string |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/PassportApi.md b/src/Packages/ZkEvmApi/Documentation~/PassportApi.md
deleted file mode 100644
index 92ae0516c..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/PassportApi.md
+++ /dev/null
@@ -1,110 +0,0 @@
-# Immutable.Api.ZkEvm.Api.PassportApi
-
-All URIs are relative to *https://api.sandbox.immutable.com*
-
-| Method | HTTP request | Description |
-|--------|--------------|-------------|
-| [**GetLinkedAddresses**](PassportApi.md#getlinkedaddresses) | **GET** /v1/chains/{chain_name}/passport/users/{user_id}/linked-addresses | Get Ethereum linked addresses for a user |
-
-
-# **GetLinkedAddresses**
-> GetLinkedAddressesRes GetLinkedAddresses (string userId, string chainName)
-
-Get Ethereum linked addresses for a user
-
-This API has been deprecated, please use https://docs.immutable.com/zkevm/api/reference/#/operations/getUserInfo instead to get a list of linked addresses.
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class GetLinkedAddressesExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- // Configure Bearer token for authorization: BearerAuth
- config.AccessToken = "YOUR_BEARER_TOKEN";
-
- var apiInstance = new PassportApi(config);
- var userId = "userId_example"; // string | The user's userId
- var chainName = "chainName_example"; // string |
-
- try
- {
- // Get Ethereum linked addresses for a user
- GetLinkedAddressesRes result = apiInstance.GetLinkedAddresses(userId, chainName);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling PassportApi.GetLinkedAddresses: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the GetLinkedAddressesWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Get Ethereum linked addresses for a user
- ApiResponse response = apiInstance.GetLinkedAddressesWithHttpInfo(userId, chainName);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling PassportApi.GetLinkedAddressesWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **userId** | **string** | The user's userId | |
-| **chainName** | **string** | | |
-
-### Return type
-
-[**GetLinkedAddressesRes**](GetLinkedAddressesRes.md)
-
-### Authorization
-
-[BearerAuth](../README.md#BearerAuth)
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | User's list of linked addresses response | - |
-| **400** | BadRequestError | - |
-| **401** | UnauthorizedError | - |
-| **403** | ForbiddenError | - |
-| **429** | TooManyRequestsError | - |
-| **500** | InternalServerError | - |
-| **0** | unexpected error | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/PassportProfileApi.md b/src/Packages/ZkEvmApi/Documentation~/PassportProfileApi.md
deleted file mode 100644
index b2da9092c..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/PassportProfileApi.md
+++ /dev/null
@@ -1,585 +0,0 @@
-# Immutable.Api.ZkEvm.Api.PassportProfileApi
-
-All URIs are relative to *https://api.sandbox.immutable.com*
-
-| Method | HTTP request | Description |
-|--------|--------------|-------------|
-| [**GetProfileByAuthenticatedWallet**](PassportProfileApi.md#getprofilebyauthenticatedwallet) | **GET** /passport-profile/v1/profile | Get profile for authenticated user |
-| [**GetUserInfo**](PassportProfileApi.md#getuserinfo) | **GET** /passport-profile/v1/user/info | Get all info for a Passport user |
-| [**LinkWalletV2**](PassportProfileApi.md#linkwalletv2) | **POST** /passport-profile/v2/linked-wallets | Link wallet v2 |
-| [**SendPhoneOtp**](PassportProfileApi.md#sendphoneotp) | **POST** /passport-profile/v1/phone-otp | Send phone OTP code for user supplied phone number |
-| [**UpdateUsername**](PassportProfileApi.md#updateusername) | **POST** /passport-profile/v1/username | Update username |
-| [**VerifyPhoneOtp**](PassportProfileApi.md#verifyphoneotp) | **POST** /passport-profile/v1/phone-otp/verify | Verify phone OTP code against user phone number |
-
-
-# **GetProfileByAuthenticatedWallet**
-> ProfileResponse GetProfileByAuthenticatedWallet ()
-
-Get profile for authenticated user
-
-Get profile for the authenticated user's Passport wallet
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class GetProfileByAuthenticatedWalletExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- // Configure Bearer token for authorization: BearerAuth
- config.AccessToken = "YOUR_BEARER_TOKEN";
-
- var apiInstance = new PassportProfileApi(config);
-
- try
- {
- // Get profile for authenticated user
- ProfileResponse result = apiInstance.GetProfileByAuthenticatedWallet();
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling PassportProfileApi.GetProfileByAuthenticatedWallet: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the GetProfileByAuthenticatedWalletWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Get profile for authenticated user
- ApiResponse response = apiInstance.GetProfileByAuthenticatedWalletWithHttpInfo();
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling PassportProfileApi.GetProfileByAuthenticatedWalletWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-This endpoint does not need any parameter.
-### Return type
-
-[**ProfileResponse**](ProfileResponse.md)
-
-### Authorization
-
-[BearerAuth](../README.md#BearerAuth)
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | OK | - |
-| **401** | UnauthorizedError | - |
-| **429** | TooManyRequestsError | - |
-| **500** | InternalServerError | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **GetUserInfo**
-> UserInfo GetUserInfo ()
-
-Get all info for a Passport user
-
-Get all the info for an authenticated Passport user
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class GetUserInfoExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- // Configure Bearer token for authorization: BearerAuth
- config.AccessToken = "YOUR_BEARER_TOKEN";
-
- var apiInstance = new PassportProfileApi(config);
-
- try
- {
- // Get all info for a Passport user
- UserInfo result = apiInstance.GetUserInfo();
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling PassportProfileApi.GetUserInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the GetUserInfoWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Get all info for a Passport user
- ApiResponse response = apiInstance.GetUserInfoWithHttpInfo();
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling PassportProfileApi.GetUserInfoWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-This endpoint does not need any parameter.
-### Return type
-
-[**UserInfo**](UserInfo.md)
-
-### Authorization
-
-[BearerAuth](../README.md#BearerAuth)
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | Passport user's info | - |
-| **401** | UnauthorizedError | - |
-| **500** | InternalServerError | - |
-| **0** | unexpected error | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **LinkWalletV2**
-> Wallet LinkWalletV2 (LinkWalletV2Request? linkWalletV2Request = null)
-
-Link wallet v2
-
-Link an external EOA wallet to an Immutable Passport account by providing an EIP-712 signature.
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class LinkWalletV2Example
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- // Configure Bearer token for authorization: BearerAuth
- config.AccessToken = "YOUR_BEARER_TOKEN";
-
- var apiInstance = new PassportProfileApi(config);
- var linkWalletV2Request = new LinkWalletV2Request?(); // LinkWalletV2Request? | (optional)
-
- try
- {
- // Link wallet v2
- Wallet result = apiInstance.LinkWalletV2(linkWalletV2Request);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling PassportProfileApi.LinkWalletV2: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the LinkWalletV2WithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Link wallet v2
- ApiResponse response = apiInstance.LinkWalletV2WithHttpInfo(linkWalletV2Request);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling PassportProfileApi.LinkWalletV2WithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **linkWalletV2Request** | [**LinkWalletV2Request?**](LinkWalletV2Request?.md) | | [optional] |
-
-### Return type
-
-[**Wallet**](Wallet.md)
-
-### Authorization
-
-[BearerAuth](../README.md#BearerAuth)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | OK | - |
-| **400** | BadRequestError | - |
-| **401** | UnauthorizedError | - |
-| **403** | ForbiddenError | - |
-| **500** | InternalServerError | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **SendPhoneOtp**
-> PhoneNumberOTPResponse SendPhoneOtp (PhoneNumberOTPRequest? phoneNumberOTPRequest = null)
-
-Send phone OTP code for user supplied phone number
-
-Send phone OTP code for user supplied phone number
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class SendPhoneOtpExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- // Configure Bearer token for authorization: BearerAuth
- config.AccessToken = "YOUR_BEARER_TOKEN";
-
- var apiInstance = new PassportProfileApi(config);
- var phoneNumberOTPRequest = new PhoneNumberOTPRequest?(); // PhoneNumberOTPRequest? | (optional)
-
- try
- {
- // Send phone OTP code for user supplied phone number
- PhoneNumberOTPResponse result = apiInstance.SendPhoneOtp(phoneNumberOTPRequest);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling PassportProfileApi.SendPhoneOtp: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the SendPhoneOtpWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Send phone OTP code for user supplied phone number
- ApiResponse response = apiInstance.SendPhoneOtpWithHttpInfo(phoneNumberOTPRequest);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling PassportProfileApi.SendPhoneOtpWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **phoneNumberOTPRequest** | [**PhoneNumberOTPRequest?**](PhoneNumberOTPRequest?.md) | | [optional] |
-
-### Return type
-
-[**PhoneNumberOTPResponse**](PhoneNumberOTPResponse.md)
-
-### Authorization
-
-[BearerAuth](../README.md#BearerAuth)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | OK | - |
-| **400** | BadRequestError | - |
-| **401** | UnauthorizedError | - |
-| **403** | ForbiddenError | - |
-| **429** | BadRequestError | - |
-| **500** | InternalServerError | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **UpdateUsername**
-> UsernameUpdateResponse UpdateUsername (UsernameUpdateRequest? usernameUpdateRequest = null)
-
-Update username
-
-Update username for the authenticated user's Passport wallet
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class UpdateUsernameExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- // Configure Bearer token for authorization: BearerAuth
- config.AccessToken = "YOUR_BEARER_TOKEN";
-
- var apiInstance = new PassportProfileApi(config);
- var usernameUpdateRequest = new UsernameUpdateRequest?(); // UsernameUpdateRequest? | (optional)
-
- try
- {
- // Update username
- UsernameUpdateResponse result = apiInstance.UpdateUsername(usernameUpdateRequest);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling PassportProfileApi.UpdateUsername: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the UpdateUsernameWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Update username
- ApiResponse response = apiInstance.UpdateUsernameWithHttpInfo(usernameUpdateRequest);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling PassportProfileApi.UpdateUsernameWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **usernameUpdateRequest** | [**UsernameUpdateRequest?**](UsernameUpdateRequest?.md) | | [optional] |
-
-### Return type
-
-[**UsernameUpdateResponse**](UsernameUpdateResponse.md)
-
-### Authorization
-
-[BearerAuth](../README.md#BearerAuth)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | OK | - |
-| **400** | BadRequestError | - |
-| **401** | UnauthorizedError | - |
-| **403** | ForbiddenError | - |
-| **500** | InternalServerError | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **VerifyPhoneOtp**
-> void VerifyPhoneOtp (PhoneNumberOTPVerificationRequest? phoneNumberOTPVerificationRequest = null)
-
-Verify phone OTP code against user phone number
-
-Verify phone OTP code for user supplied phone number
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class VerifyPhoneOtpExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- // Configure Bearer token for authorization: BearerAuth
- config.AccessToken = "YOUR_BEARER_TOKEN";
-
- var apiInstance = new PassportProfileApi(config);
- var phoneNumberOTPVerificationRequest = new PhoneNumberOTPVerificationRequest?(); // PhoneNumberOTPVerificationRequest? | (optional)
-
- try
- {
- // Verify phone OTP code against user phone number
- apiInstance.VerifyPhoneOtp(phoneNumberOTPVerificationRequest);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling PassportProfileApi.VerifyPhoneOtp: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the VerifyPhoneOtpWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Verify phone OTP code against user phone number
- apiInstance.VerifyPhoneOtpWithHttpInfo(phoneNumberOTPVerificationRequest);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling PassportProfileApi.VerifyPhoneOtpWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **phoneNumberOTPVerificationRequest** | [**PhoneNumberOTPVerificationRequest?**](PhoneNumberOTPVerificationRequest?.md) | | [optional] |
-
-### Return type
-
-void (empty response body)
-
-### Authorization
-
-[BearerAuth](../README.md#BearerAuth)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | OK | - |
-| **400** | BadRequestError | - |
-| **429** | TooManyRequestsError | - |
-| **500** | InternalServerError | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/PendingOrderStatus.md b/src/Packages/ZkEvmApi/Documentation~/PendingOrderStatus.md
deleted file mode 100644
index 2110087bd..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/PendingOrderStatus.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.PendingOrderStatus
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Name** | **string** | The order status that indicates the order is yet to be active due to various reasons. |
-**Evaluated** | **bool** | Whether the order has been evaluated after its creation |
-**Started** | **bool** | Whether the order has reached its specified start time |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/PhoneNumberOTPRequest.md b/src/Packages/ZkEvmApi/Documentation~/PhoneNumberOTPRequest.md
deleted file mode 100644
index dd026e7b4..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/PhoneNumberOTPRequest.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.PhoneNumberOTPRequest
-Phone number OTP request
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**PhoneNumber** | **string** | Phone number |
-**Channel** | **string** | | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/PhoneNumberOTPResponse.md b/src/Packages/ZkEvmApi/Documentation~/PhoneNumberOTPResponse.md
deleted file mode 100644
index 59e668740..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/PhoneNumberOTPResponse.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.PhoneNumberOTPResponse
-Phone number OTP request
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**PhoneNumber** | **string** | Phone number |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/PhoneNumberOTPVerificationRequest.md b/src/Packages/ZkEvmApi/Documentation~/PhoneNumberOTPVerificationRequest.md
deleted file mode 100644
index c6670cdd0..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/PhoneNumberOTPVerificationRequest.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.PhoneNumberOTPVerificationRequest
-Phone number OTP verification request
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**PhoneNumber** | **string** | Phone number |
-**Code** | **string** | Phone number verification OTP |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/PricingApi.md b/src/Packages/ZkEvmApi/Documentation~/PricingApi.md
deleted file mode 100644
index ee24322e4..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/PricingApi.md
+++ /dev/null
@@ -1,219 +0,0 @@
-# Immutable.Api.ZkEvm.Api.PricingApi
-
-All URIs are relative to *https://api.sandbox.immutable.com*
-
-| Method | HTTP request | Description |
-|--------|--------------|-------------|
-| [**QuotesForNFTs**](PricingApi.md#quotesfornfts) | **GET** /v1/chains/{chain_name}/quotes/{contract_address}/nfts | Get pricing data for a list of token ids |
-| [**QuotesForStacks**](PricingApi.md#quotesforstacks) | **GET** /v1/chains/{chain_name}/quotes/{contract_address}/stacks | Get pricing data for a list of stack ids |
-
-
-# **QuotesForNFTs**
-> QuotesForNFTsResult QuotesForNFTs (string chainName, string contractAddress, List tokenId, string? paymentToken = null, string? pageCursor = null)
-
-Get pricing data for a list of token ids
-
-pricing data for a list of token ids
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class QuotesForNFTsExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new PricingApi(config);
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var contractAddress = "contractAddress_example"; // string | Contract address for collection that these token ids are on
- var tokenId = new List(); // List | List of token ids to get pricing data for
- var paymentToken = NATIVE; // string? | Filters the active listings, bids, floor listing and top bid by the specified payment token, either the address of the payment token contract or 'NATIVE'. (optional)
- var pageCursor = "pageCursor_example"; // string? | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
-
- try
- {
- // Get pricing data for a list of token ids
- QuotesForNFTsResult result = apiInstance.QuotesForNFTs(chainName, contractAddress, tokenId, paymentToken, pageCursor);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling PricingApi.QuotesForNFTs: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the QuotesForNFTsWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Get pricing data for a list of token ids
- ApiResponse response = apiInstance.QuotesForNFTsWithHttpInfo(chainName, contractAddress, tokenId, paymentToken, pageCursor);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling PricingApi.QuotesForNFTsWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | The name of chain | |
-| **contractAddress** | **string** | Contract address for collection that these token ids are on | |
-| **tokenId** | [**List<string>**](string.md) | List of token ids to get pricing data for | |
-| **paymentToken** | **string?** | Filters the active listings, bids, floor listing and top bid by the specified payment token, either the address of the payment token contract or 'NATIVE'. | [optional] |
-| **pageCursor** | **string?** | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-
-### Return type
-
-[**QuotesForNFTsResult**](QuotesForNFTsResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **401** | Unauthorised Request (401) | - |
-| **403** | Forbidden Request (403) | - |
-| **404** | The specified resource was not found (404) | - |
-| **429** | Too Many Requests (429) | * Retry-After -
|
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **QuotesForStacks**
-> QuotesForStacksResult QuotesForStacks (string chainName, string contractAddress, List stackId, string? paymentToken = null, string? pageCursor = null)
-
-Get pricing data for a list of stack ids
-
-Get pricing data for a list of stack ids
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class QuotesForStacksExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new PricingApi(config);
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var contractAddress = "contractAddress_example"; // string | Contract address for collection that these stacks are on
- var stackId = new List(); // List | List of stack ids to get pricing data for
- var paymentToken = NATIVE; // string? | Filters the active listings, bids, floor listing and top bid by the specified payment token, either the address of the payment token contract or 'NATIVE'. (optional)
- var pageCursor = "pageCursor_example"; // string? | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
-
- try
- {
- // Get pricing data for a list of stack ids
- QuotesForStacksResult result = apiInstance.QuotesForStacks(chainName, contractAddress, stackId, paymentToken, pageCursor);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling PricingApi.QuotesForStacks: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the QuotesForStacksWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Get pricing data for a list of stack ids
- ApiResponse response = apiInstance.QuotesForStacksWithHttpInfo(chainName, contractAddress, stackId, paymentToken, pageCursor);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling PricingApi.QuotesForStacksWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | The name of chain | |
-| **contractAddress** | **string** | Contract address for collection that these stacks are on | |
-| **stackId** | [**List<Guid>**](Guid.md) | List of stack ids to get pricing data for | |
-| **paymentToken** | **string?** | Filters the active listings, bids, floor listing and top bid by the specified payment token, either the address of the payment token contract or 'NATIVE'. | [optional] |
-| **pageCursor** | **string?** | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-
-### Return type
-
-[**QuotesForStacksResult**](QuotesForStacksResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | 200 response | - |
-| **400** | Bad Request (400) | - |
-| **401** | Unauthorised Request (401) | - |
-| **403** | Forbidden Request (403) | - |
-| **404** | The specified resource was not found (404) | - |
-| **429** | Too Many Requests (429) | * Retry-After -
|
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ProfileResponse.md b/src/Packages/ZkEvmApi/Documentation~/ProfileResponse.md
deleted file mode 100644
index 5d5384006..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ProfileResponse.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ProfileResponse
-Get profile by wallet response
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Username** | **string** | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/ProtocolData.md b/src/Packages/ZkEvmApi/Documentation~/ProtocolData.md
deleted file mode 100644
index 9d94edb4a..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/ProtocolData.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Immutable.Api.ZkEvm.Model.ProtocolData
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**OrderType** | **string** | Seaport order type. Orders containing ERC721 tokens will need to pass in the order type as FULL_RESTRICTED while orders with ERC1155 tokens will need to pass in the order_type as PARTIAL_RESTRICTED |
-**Counter** | **string** | big.Int or uint256 string for order counter |
-**ZoneAddress** | **string** | Immutable zone address |
-**SeaportAddress** | **string** | Immutable Seaport contract address |
-**SeaportVersion** | **string** | Immutable Seaport contract version |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/QuotesForNFTsResult.md b/src/Packages/ZkEvmApi/Documentation~/QuotesForNFTsResult.md
deleted file mode 100644
index f5ace9c57..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/QuotesForNFTsResult.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.QuotesForNFTsResult
-Quotes for NFTs result
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**List<NFTQuoteResult>**](NFTQuoteResult.md) | List of quotes |
-**Page** | [**Page**](Page.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/QuotesForStacksResult.md b/src/Packages/ZkEvmApi/Documentation~/QuotesForStacksResult.md
deleted file mode 100644
index db4863528..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/QuotesForStacksResult.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.QuotesForStacksResult
-Quotes for stacks result
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**List<StackQuoteResult>**](StackQuoteResult.md) | List of quotes |
-**Page** | [**Page**](Page.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/RefreshCollectionMetadataRequest.md b/src/Packages/ZkEvmApi/Documentation~/RefreshCollectionMetadataRequest.md
deleted file mode 100644
index a298b0b33..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/RefreshCollectionMetadataRequest.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.RefreshCollectionMetadataRequest
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**CollectionMetadata** | [**CollectionMetadata**](CollectionMetadata.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/RefreshCollectionMetadataResult.md b/src/Packages/ZkEvmApi/Documentation~/RefreshCollectionMetadataResult.md
deleted file mode 100644
index 2bad89f06..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/RefreshCollectionMetadataResult.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.RefreshCollectionMetadataResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**ContractAddress** | **string** | |
-**Chain** | [**Chain**](Chain.md) | |
-**CollectionMetadata** | [**CollectionMetadata**](CollectionMetadata.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/RefreshMetadataByID.md b/src/Packages/ZkEvmApi/Documentation~/RefreshMetadataByID.md
deleted file mode 100644
index 56b62bb74..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/RefreshMetadataByID.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# Immutable.Api.ZkEvm.Model.RefreshMetadataByID
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Name** | **string** | The name of the NFT |
-**Description** | **string** | The description of the NFT |
-**Image** | **string** | The image url of the NFT |
-**ExternalUrl** | **string** | The external link of the NFT |
-**AnimationUrl** | **string** | The animation url of the NFT |
-**YoutubeUrl** | **string** | The youtube link of the NFT |
-**Attributes** | [**List<NFTMetadataAttribute>**](NFTMetadataAttribute.md) | List of Metadata attributes |
-**MetadataId** | **Guid** | Metadata id in UUIDv4 format |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/RefreshMetadataByIDRequest.md b/src/Packages/ZkEvmApi/Documentation~/RefreshMetadataByIDRequest.md
deleted file mode 100644
index 388b3d684..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/RefreshMetadataByIDRequest.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.RefreshMetadataByIDRequest
-Request body for refreshing metadata by id. Total size of this list should not exceed 228 KiB
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Metadata** | [**List<RefreshMetadataByID>**](RefreshMetadataByID.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/RefreshMetadataByTokenID.md b/src/Packages/ZkEvmApi/Documentation~/RefreshMetadataByTokenID.md
deleted file mode 100644
index c6ea3a88f..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/RefreshMetadataByTokenID.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# Immutable.Api.ZkEvm.Model.RefreshMetadataByTokenID
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Name** | **string** | The name of the NFT |
-**Description** | **string** | The description of the NFT |
-**Image** | **string** | The image url of the NFT |
-**ExternalUrl** | **string** | The external link of the NFT |
-**AnimationUrl** | **string** | The animation url of the NFT |
-**YoutubeUrl** | **string** | The youtube link of the NFT |
-**Attributes** | [**List<NFTMetadataAttribute>**](NFTMetadataAttribute.md) | List of Metadata attributes |
-**TokenId** | **string** | An `uint256` token id as string |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/RefreshNFTMetadataByTokenIDRequest.md b/src/Packages/ZkEvmApi/Documentation~/RefreshNFTMetadataByTokenIDRequest.md
deleted file mode 100644
index 6bb65fdbf..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/RefreshNFTMetadataByTokenIDRequest.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.RefreshNFTMetadataByTokenIDRequest
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**NftMetadata** | [**List<RefreshMetadataByTokenID>**](RefreshMetadataByTokenID.md) | List of nft metadata to be refreshed. Total size of the list should not exceed 228 KiB |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/RefreshableNFTAttributes.md b/src/Packages/ZkEvmApi/Documentation~/RefreshableNFTAttributes.md
deleted file mode 100644
index 072510fac..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/RefreshableNFTAttributes.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# Immutable.Api.ZkEvm.Model.RefreshableNFTAttributes
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Name** | **string** | The name of the NFT |
-**Description** | **string** | The description of the NFT |
-**Image** | **string** | The image url of the NFT |
-**ExternalUrl** | **string** | The external link of the NFT |
-**AnimationUrl** | **string** | The animation url of the NFT |
-**YoutubeUrl** | **string** | The youtube link of the NFT |
-**Attributes** | [**List<NFTMetadataAttribute>**](NFTMetadataAttribute.md) | List of Metadata attributes |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/SaleFee.md b/src/Packages/ZkEvmApi/Documentation~/SaleFee.md
deleted file mode 100644
index f902673f6..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/SaleFee.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.SaleFee
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Amount** | **string** | Fee payable to recipient upon settlement | [optional]
-**Type** | **string** | Fee type | [optional]
-**Recipient** | **string** | Wallet address of fee recipient | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/SalePayment.md b/src/Packages/ZkEvmApi/Documentation~/SalePayment.md
deleted file mode 100644
index 285fef03c..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/SalePayment.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Immutable.Api.ZkEvm.Model.SalePayment
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Token** | [**SalePaymentToken**](SalePaymentToken.md) | |
-**PriceExcludingFees** | **string** | The base price of the sale not including any fees |
-**PriceIncludingFees** | **string** | The total price of the sale. Includes the sum of all fees |
-**Fees** | [**List<SaleFee>**](SaleFee.md) | The fees associated with this sale |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/SalePaymentToken.md b/src/Packages/ZkEvmApi/Documentation~/SalePaymentToken.md
deleted file mode 100644
index 7643eccb0..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/SalePaymentToken.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Immutable.Api.ZkEvm.Model.SalePaymentToken
-The type of payment token
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**ContractType** | **TokenContractType** | |
-**ContractAddress** | **string** | The contract address |
-**Symbol** | **string** | The token symbol |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/SearchNFTsResult.md b/src/Packages/ZkEvmApi/Documentation~/SearchNFTsResult.md
deleted file mode 100644
index b97023dc2..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/SearchNFTsResult.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.SearchNFTsResult
-Search NFTs result
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**List<NFTBundle>**](NFTBundle.md) | List of nft bundles |
-**Page** | [**Page**](Page.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/SearchStacksResult.md b/src/Packages/ZkEvmApi/Documentation~/SearchStacksResult.md
deleted file mode 100644
index 907d22f10..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/SearchStacksResult.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.SearchStacksResult
-Search stacks result
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**List<StackBundle>**](StackBundle.md) | List of stack bundles |
-**Page** | [**Page**](Page.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/SessionActivityContract.md b/src/Packages/ZkEvmApi/Documentation~/SessionActivityContract.md
deleted file mode 100644
index 1c6701acf..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/SessionActivityContract.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# Immutable.Api.ZkEvm.Model.SessionActivityContract
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **int** | The unique identifier of the session activity contract | [optional]
-**Name** | **string** | The name of the session activity contract | [optional]
-**ContractAddress** | **string** | The smart contract address | [optional]
-**ClientId** | **string** | The client ID associated with the session activity contract | [optional]
-**ChainId** | **string** | The chain ID for the session activity contract | [optional]
-**OrganisationId** | **Guid** | The organisation ID that owns this session activity contract (UUID format) | [optional]
-**Enabled** | **bool** | Whether the session activity contract is enabled | [optional]
-**CreatedAt** | **DateTime** | The timestamp when the session activity contract was created | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/SessionActivityContractResponse.md b/src/Packages/ZkEvmApi/Documentation~/SessionActivityContractResponse.md
deleted file mode 100644
index ffdf64541..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/SessionActivityContractResponse.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# Immutable.Api.ZkEvm.Model.SessionActivityContractResponse
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **int** | The unique identifier of the session activity contract |
-**Name** | **string** | The name of the session activity contract |
-**ContractAddress** | **string** | The smart contract address |
-**ClientId** | **string** | The client ID associated with the session activity contract |
-**ChainId** | **string** | The chain ID for the session activity contract |
-**OrganisationId** | **Guid** | The organisation ID that owns this session activity contract (UUID format) |
-**Enabled** | **bool** | Whether the session activity contract is enabled |
-**CreatedAt** | **DateTime** | The timestamp when the session activity contract was created |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/SignCraftingRequest.md b/src/Packages/ZkEvmApi/Documentation~/SignCraftingRequest.md
deleted file mode 100644
index 83beecacc..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/SignCraftingRequest.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Immutable.Api.ZkEvm.Model.SignCraftingRequest
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**MultiCaller** | [**SignCraftingRequestMultiCaller**](SignCraftingRequestMultiCaller.md) | |
-**ReferenceId** | **string** | The id of this request in the system that originates the crafting request, specified as a 32 byte hex string |
-**Calls** | [**List<Call>**](Call.md) | The calls to be signed |
-**ExpiresAt** | **DateTime** | The expiration time of the request |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/SignCraftingRequestMultiCaller.md b/src/Packages/ZkEvmApi/Documentation~/SignCraftingRequestMultiCaller.md
deleted file mode 100644
index 756566568..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/SignCraftingRequestMultiCaller.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.SignCraftingRequestMultiCaller
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Address** | **string** | An Ethereum address |
-**Name** | **string** | The name of the multicaller contract |
-**VarVersion** | **string** | The version of the multicaller contract |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/SignCraftingResult.md b/src/Packages/ZkEvmApi/Documentation~/SignCraftingResult.md
deleted file mode 100644
index dd2307b69..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/SignCraftingResult.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.SignCraftingResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**SignerAddress** | **string** | An Ethereum address |
-**Signature** | **string** | The signature of the request |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Stack.md b/src/Packages/ZkEvmApi/Documentation~/Stack.md
deleted file mode 100644
index 3a9db8003..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Stack.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Stack
-Stack
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**StackId** | **Guid** | Stack ID |
-**Chain** | [**Chain**](Chain.md) | |
-**ContractAddress** | **string** | Contract address |
-**ContractType** | **MarketplaceContractType** | |
-**CreatedAt** | **DateTime** | When the metadata was created |
-**UpdatedAt** | **DateTime** | When the metadata was last updated |
-**Name** | **string** | The name of the NFT |
-**Description** | **string** | The description of the NFT |
-**Image** | **string** | The image url of the NFT |
-**ExternalUrl** | **string** | The external website link of NFT |
-**AnimationUrl** | **string** | The animation url of the NFT |
-**YoutubeUrl** | **string** | The youtube URL of NFT |
-**Attributes** | [**List<NFTMetadataAttribute>**](NFTMetadataAttribute.md) | List of Metadata attributes |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/StackBundle.md b/src/Packages/ZkEvmApi/Documentation~/StackBundle.md
deleted file mode 100644
index 0424f1582..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/StackBundle.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# Immutable.Api.ZkEvm.Model.StackBundle
-Stack bundle includes stacks, markets and listings
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Stack** | [**Stack**](Stack.md) | |
-**StackCount** | **int** | Total count of NFTs in the stack matching the filter params |
-**Market** | [**Market**](Market.md) | |
-**Listings** | [**List<Listing>**](Listing.md) | List of open listings for the stack. |
-**Bids** | [**List<Bid>**](Bid.md) | List of open bids for the stack. |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/StackQuoteResult.md b/src/Packages/ZkEvmApi/Documentation~/StackQuoteResult.md
deleted file mode 100644
index 62a4d913b..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/StackQuoteResult.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Immutable.Api.ZkEvm.Model.StackQuoteResult
-Stack quote result
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Chain** | [**Chain**](Chain.md) | |
-**StackId** | **Guid** | |
-**MarketStack** | [**Market**](Market.md) | |
-**MarketCollection** | [**Market**](Market.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Token.md b/src/Packages/ZkEvmApi/Documentation~/Token.md
deleted file mode 100644
index 61005701a..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Token.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Token
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Chain** | [**Chain**](Chain.md) | |
-**ContractAddress** | **string** | The address of token contract |
-**RootContractAddress** | **string** | The address of root token contract |
-**RootChainId** | **string** | The id of the root chain for a bridged token | [optional]
-**BridgeUsed** | **string** | The name of the bridge, for bridged tokens only | [optional]
-**Symbol** | **string** | The symbol of token |
-**Decimals** | **int?** | The decimals of token |
-**ImageUrl** | **string** | The image url of token |
-**Name** | **string** | The name of token |
-**VerificationStatus** | **AssetVerificationStatus** | |
-**UpdatedAt** | **DateTime** | When the collection was last updated |
-**IsCanonical** | **bool** | Indicates whether the token is canonical or not |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/TokenContractType.md b/src/Packages/ZkEvmApi/Documentation~/TokenContractType.md
deleted file mode 100644
index 38591b686..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/TokenContractType.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.TokenContractType
-The contract type for a token
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/TokensApi.md b/src/Packages/ZkEvmApi/Documentation~/TokensApi.md
deleted file mode 100644
index 51ea6ca08..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/TokensApi.md
+++ /dev/null
@@ -1,209 +0,0 @@
-# Immutable.Api.ZkEvm.Api.TokensApi
-
-All URIs are relative to *https://api.sandbox.immutable.com*
-
-| Method | HTTP request | Description |
-|--------|--------------|-------------|
-| [**GetERC20Token**](TokensApi.md#geterc20token) | **GET** /v1/chains/{chain_name}/tokens/{contract_address} | Get single ERC20 token |
-| [**ListERC20Tokens**](TokensApi.md#listerc20tokens) | **GET** /v1/chains/{chain_name}/tokens | List ERC20 tokens |
-
-
-# **GetERC20Token**
-> GetTokenResult GetERC20Token (string contractAddress, string chainName)
-
-Get single ERC20 token
-
-Get single ERC20 token
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class GetERC20TokenExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new TokensApi(config);
- var contractAddress = 0x8a90cab2b38dba80c64b7734e58ee1db38b8992e; // string | The address of contract
- var chainName = "chainName_example"; // string | The name of chain
-
- try
- {
- // Get single ERC20 token
- GetTokenResult result = apiInstance.GetERC20Token(contractAddress, chainName);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling TokensApi.GetERC20Token: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the GetERC20TokenWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // Get single ERC20 token
- ApiResponse response = apiInstance.GetERC20TokenWithHttpInfo(contractAddress, chainName);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling TokensApi.GetERC20TokenWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **contractAddress** | **string** | The address of contract | |
-| **chainName** | **string** | The name of chain | |
-
-### Return type
-
-[**GetTokenResult**](GetTokenResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | OK | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-
-# **ListERC20Tokens**
-> ListTokensResult ListERC20Tokens (string chainName, DateTime? fromUpdatedAt = null, List? verificationStatus = null, bool? isCanonical = null, string? pageCursor = null, int? pageSize = null)
-
-List ERC20 tokens
-
-List ERC20 tokens
-
-### Example
-```csharp
-using System.Collections.Generic;
-using System.Diagnostics;
-using Immutable.Api.ZkEvm.Api;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Example
-{
- public class ListERC20TokensExample
- {
- public static void Main()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new TokensApi(config);
- var chainName = "chainName_example"; // string | The name of chain
- var fromUpdatedAt = 2022-08-16T17:43:26.991388Z; // DateTime? | Datetime to use as the oldest updated timestamp (optional)
- var verificationStatus = new List?(); // List? | List of verification status to filter by (optional)
- var isCanonical = true; // bool? | [Experimental - Canonical token data may be updated] Filter by canonical or non-canonical tokens. (optional)
- var pageCursor = "pageCursor_example"; // string? | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- var pageSize = 100; // int? | Maximum number of items to return (optional) (default to 100)
-
- try
- {
- // List ERC20 tokens
- ListTokensResult result = apiInstance.ListERC20Tokens(chainName, fromUpdatedAt, verificationStatus, isCanonical, pageCursor, pageSize);
- Debug.WriteLine(result);
- }
- catch (ApiException e)
- {
- Debug.Print("Exception when calling TokensApi.ListERC20Tokens: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
- }
- }
- }
-}
-```
-
-#### Using the ListERC20TokensWithHttpInfo variant
-This returns an ApiResponse object which contains the response data, status code and headers.
-
-```csharp
-try
-{
- // List ERC20 tokens
- ApiResponse response = apiInstance.ListERC20TokensWithHttpInfo(chainName, fromUpdatedAt, verificationStatus, isCanonical, pageCursor, pageSize);
- Debug.Write("Status Code: " + response.StatusCode);
- Debug.Write("Response Headers: " + response.Headers);
- Debug.Write("Response Body: " + response.Data);
-}
-catch (ApiException e)
-{
- Debug.Print("Exception when calling TokensApi.ListERC20TokensWithHttpInfo: " + e.Message);
- Debug.Print("Status Code: " + e.ErrorCode);
- Debug.Print(e.StackTrace);
-}
-```
-
-### Parameters
-
-| Name | Type | Description | Notes |
-|------|------|-------------|-------|
-| **chainName** | **string** | The name of chain | |
-| **fromUpdatedAt** | **DateTime?** | Datetime to use as the oldest updated timestamp | [optional] |
-| **verificationStatus** | [**List<AssetVerificationStatus>?**](AssetVerificationStatus.md) | List of verification status to filter by | [optional] |
-| **isCanonical** | **bool?** | [Experimental - Canonical token data may be updated] Filter by canonical or non-canonical tokens. | [optional] |
-| **pageCursor** | **string?** | Encoded page cursor to retrieve previous or next page. Use the value returned in the response. | [optional] |
-| **pageSize** | **int?** | Maximum number of items to return | [optional] [default to 100] |
-
-### Return type
-
-[**ListTokensResult**](ListTokensResult.md)
-
-### Authorization
-
-No authorization required
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-
-### HTTP response details
-| Status code | Description | Response headers |
-|-------------|-------------|------------------|
-| **200** | OK | - |
-| **400** | Bad Request (400) | - |
-| **404** | The specified resource was not found (404) | - |
-| **500** | Internal Server Error (500) | - |
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Trade.md b/src/Packages/ZkEvmApi/Documentation~/Trade.md
deleted file mode 100644
index 440371d17..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Trade.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Trade
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Buy** | [**List<Item>**](Item.md) | Buy items are transferred from the taker to the maker. |
-**BuyerAddress** | **string** | Deprecated. Use maker and taker addresses instead of buyer and seller addresses. |
-**BuyerFees** | [**List<Fee>**](Fee.md) | Deprecated. Use fees instead. The taker always pays the fees. |
-**Fees** | [**List<Fee>**](Fee.md) | |
-**Chain** | [**Chain**](Chain.md) | |
-**OrderId** | **string** | |
-**BlockchainMetadata** | [**TradeBlockchainMetadata**](TradeBlockchainMetadata.md) | |
-**IndexedAt** | **DateTime** | Time the on-chain trade event is indexed by the order book system |
-**Id** | **string** | Global Trade identifier |
-**Sell** | [**List<Item>**](Item.md) | Sell items are transferred from the maker to the taker. |
-**SellerAddress** | **string** | Deprecated. Use maker and taker addresses instead of buyer and seller addresses. |
-**MakerAddress** | **string** | |
-**TakerAddress** | **string** | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/TradeBlockchainMetadata.md b/src/Packages/ZkEvmApi/Documentation~/TradeBlockchainMetadata.md
deleted file mode 100644
index b73eec388..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/TradeBlockchainMetadata.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Immutable.Api.ZkEvm.Model.TradeBlockchainMetadata
-The metadata related to the transaction in which the activity occurred
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**TransactionHash** | **string** | The transaction hash of the trade |
-**BlockNumber** | **string** | EVM block number (uint64 as string) |
-**TransactionIndex** | **string** | Transaction index in a block (uint32 as string) |
-**LogIndex** | **string** | The log index of the fulfillment event in a block (uint32 as string) |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/TradeResult.md b/src/Packages/ZkEvmApi/Documentation~/TradeResult.md
deleted file mode 100644
index ac72d74f4..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/TradeResult.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.TradeResult
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Result** | [**Trade**](Trade.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Transfer.md b/src/Packages/ZkEvmApi/Documentation~/Transfer.md
deleted file mode 100644
index 827acd333..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Transfer.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Transfer
-The transfer activity details
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**From** | **string** | The account address the asset was transferred from |
-**To** | **string** | The account address the asset was transferred to |
-**Amount** | **string** | The amount of assets transferred |
-**Asset** | [**ActivityAsset**](ActivityAsset.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/UnfulfillableOrder.md b/src/Packages/ZkEvmApi/Documentation~/UnfulfillableOrder.md
deleted file mode 100644
index ceaa06f89..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/UnfulfillableOrder.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Immutable.Api.ZkEvm.Model.UnfulfillableOrder
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**OrderId** | **string** | OrderID for the requested but unfulfillable order |
-**TokenId** | **string** | Token ID for the ERC721 or ERC1155 token when fulfilling a collection order | [optional]
-**Reason** | **string** | Nullable string containing error reason if the signing is unsuccessful for the order |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/UpsertSessionActivityContractReq.md b/src/Packages/ZkEvmApi/Documentation~/UpsertSessionActivityContractReq.md
deleted file mode 100644
index 1518d363f..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/UpsertSessionActivityContractReq.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# Immutable.Api.ZkEvm.Model.UpsertSessionActivityContractReq
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **int** | The unique identifier of the session activity contract | [optional]
-**Name** | **string** | The name of the session activity contract |
-**ContractAddress** | **string** | The smart contract address |
-**ClientId** | **string** | The client ID associated with the session activity contract |
-**ChainId** | **string** | The chain ID for the session activity contract |
-**OrganisationId** | **Guid** | The organisation ID that owns this session activity contract (UUID format) |
-**Enabled** | **bool** | Whether the session activity contract is enabled |
-**CreatedAt** | **DateTime** | The timestamp when the session activity contract was created | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/UpsertSessionActivityContractResp.md b/src/Packages/ZkEvmApi/Documentation~/UpsertSessionActivityContractResp.md
deleted file mode 100644
index 7819444ae..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/UpsertSessionActivityContractResp.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# Immutable.Api.ZkEvm.Model.UpsertSessionActivityContractResp
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **int** | The unique identifier of the session activity contract | [optional]
-**Name** | **string** | The name of the session activity contract | [optional]
-**ContractAddress** | **string** | The smart contract address | [optional]
-**ClientId** | **string** | The client ID associated with the session activity contract | [optional]
-**ChainId** | **string** | The chain ID for the session activity contract | [optional]
-**OrganisationId** | **Guid** | The organisation ID that owns this session activity contract (UUID format) | [optional]
-**Enabled** | **bool** | Whether the session activity contract is enabled | [optional]
-**CreatedAt** | **DateTime** | The timestamp when the session activity contract was created | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/UserInfo.md b/src/Packages/ZkEvmApi/Documentation~/UserInfo.md
deleted file mode 100644
index d828d8ebf..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/UserInfo.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Immutable.Api.ZkEvm.Model.UserInfo
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Sub** | **string** | The user's id |
-**Email** | **string** | The user's email address | [optional]
-**PassportAddress** | **string** | The user's Passport address if it has been registered | [optional]
-**LinkedAddresses** | **List<string>** | The user's list of linked addresses |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/UsernameUpdateRequest.md b/src/Packages/ZkEvmApi/Documentation~/UsernameUpdateRequest.md
deleted file mode 100644
index 0141a8a7d..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/UsernameUpdateRequest.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.UsernameUpdateRequest
-Request to update username
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Username** | **string** | The new username |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/UsernameUpdateResponse.md b/src/Packages/ZkEvmApi/Documentation~/UsernameUpdateResponse.md
deleted file mode 100644
index bac9dd14c..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/UsernameUpdateResponse.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Immutable.Api.ZkEvm.Model.UsernameUpdateResponse
-Username update response
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Username** | **string** | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/VerificationRequest.md b/src/Packages/ZkEvmApi/Documentation~/VerificationRequest.md
deleted file mode 100644
index 821ca646b..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/VerificationRequest.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# Immutable.Api.ZkEvm.Model.VerificationRequest
-The verification request
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **Guid** | The id of the verification request |
-**Chain** | [**Chain**](Chain.md) | |
-**ContractAddress** | **string** | The contract address |
-**OrgName** | **string** | The name of the organisation associated with this contract |
-**Name** | **string** | The name of the collection |
-**Symbol** | **string** | The symbol of contract |
-**Description** | **string** | The description of collection |
-**OrgId** | **string** | The id of the organisation associated with this contract |
-**RequesterEmail** | **string** | The email address of the user who requested the contract to be verified |
-**ContractType** | **VerificationRequestContractType** | |
-**VerificationRequestStatus** | **VerificationRequestStatus** | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/VerificationRequestContractType.md b/src/Packages/ZkEvmApi/Documentation~/VerificationRequestContractType.md
deleted file mode 100644
index e29ef6785..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/VerificationRequestContractType.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.VerificationRequestContractType
-The contract type associated with the given request
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/VerificationRequestInternal.md b/src/Packages/ZkEvmApi/Documentation~/VerificationRequestInternal.md
deleted file mode 100644
index 2866c3a2c..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/VerificationRequestInternal.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# Immutable.Api.ZkEvm.Model.VerificationRequestInternal
-The verification request (internal)
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Id** | **Guid** | The id of the verification request |
-**Chain** | [**Chain**](Chain.md) | |
-**ContractAddress** | **string** | The contract address |
-**OrgName** | **string** | The name of the organisation associated with this contract |
-**Name** | **string** | The name of the collection |
-**Symbol** | **string** | The symbol of contract |
-**Description** | **string** | The description of collection |
-**OrgId** | **string** | The id of the organisation associated with this contract |
-**RequesterEmail** | **string** | The email address of the user who requested the contract to be verified |
-**ContractType** | **VerificationRequestContractType** | |
-**VerificationRequestStatus** | **VerificationRequestStatus** | |
-**OrgTier** | **OrganisationTier** | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/VerificationRequestStatus.md b/src/Packages/ZkEvmApi/Documentation~/VerificationRequestStatus.md
deleted file mode 100644
index 886c71829..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/VerificationRequestStatus.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Immutable.Api.ZkEvm.Model.VerificationRequestStatus
-The status of the verification request
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Wallet.md b/src/Packages/ZkEvmApi/Documentation~/Wallet.md
deleted file mode 100644
index 37bcc6ff0..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Wallet.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Wallet
-Linked wallet
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**Address** | **string** | Ethereum address |
-**Type** | **string** | Wallet type |
-**CreatedAt** | **DateTime** | Created at |
-**UpdatedAt** | **DateTime** | Created at |
-**Name** | **string** | Name | [optional]
-**ClientName** | **string** | Name of client that linked the wallet |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/Documentation~/Withdrawal.md b/src/Packages/ZkEvmApi/Documentation~/Withdrawal.md
deleted file mode 100644
index 5b2ee6cff..000000000
--- a/src/Packages/ZkEvmApi/Documentation~/Withdrawal.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Immutable.Api.ZkEvm.Model.Withdrawal
-The withdrawal activity details
-
-## Properties
-
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**From** | **string** | The account address the asset was withdrawn from |
-**Amount** | **string** | The amount of assets withdrawn |
-**Asset** | [**ActivityAsset**](ActivityAsset.md) | |
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
diff --git a/src/Packages/ZkEvmApi/LICENSE.md b/src/Packages/ZkEvmApi/LICENSE.md
deleted file mode 100644
index f47af0acd..000000000
--- a/src/Packages/ZkEvmApi/LICENSE.md
+++ /dev/null
@@ -1,176 +0,0 @@
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
-TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
-1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
-2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
-3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
-4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
-5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
-6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
-7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
-8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
-9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
-END OF TERMS AND CONDITIONS
diff --git a/src/Packages/ZkEvmApi/LICENSE.md.meta b/src/Packages/ZkEvmApi/LICENSE.md.meta
deleted file mode 100644
index b8bc478e8..000000000
--- a/src/Packages/ZkEvmApi/LICENSE.md.meta
+++ /dev/null
@@ -1,7 +0,0 @@
-fileFormatVersion: 2
-guid: 5bb18958703964e918465ec612269e8d
-TextScriptImporter:
- externalObjects: {}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/src/Packages/ZkEvmApi/README.md b/src/Packages/ZkEvmApi/README.md
deleted file mode 100644
index fa82e714d..000000000
--- a/src/Packages/ZkEvmApi/README.md
+++ /dev/null
@@ -1,316 +0,0 @@
-# Immutable.Api - the C# library for the Immutable zkEVM API
-
-Immutable Multi Rollup API
-
-This C# SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
-
-- API version: 1.0.0
-- SDK version: 1.0.0
-- Generator version: 7.8.0
-- Build package: org.openapitools.codegen.languages.CSharpClientCodegen
- For more information, please visit [https://support.immutable.com](https://support.immutable.com)
-
-
-## Version support
-This generator should support all current LTS versions of Unity
-- Unity 2020.3 (LTS) and up
-- .NET Standard 2.1 / .NET Framework
-
-
-## Dependencies
-
-- [Newtonsoft.Json](https://docs.unity3d.com/Packages/com.unity.nuget.newtonsoft-json@3.0/manual/index.html) - 3.0.2 or later
-
-
-## Installation
-Add the dependencies to `Packages/manifest.json`
-```
-{
- "dependencies": {
- ...
- "com.unity.nuget.newtonsoft-json": "3.0.2"
- }
-}
-```
-
-Then use the namespaces:
-```csharp
-using Immutable.Api.Api;
-using Immutable.Api.Client;
-using Immutable.Api.Model;
-```
-
-
-## Getting Started
-
-```csharp
-using System;
-using System.Collections.Generic;
-using UnityEngine;
-using Immutable.Api.Api;
-using Immutable.Api.Client;
-using Immutable.Api.Model;
-
-namespace Immutable.ApiExample
-{
-
- public class GetActivityExample : MonoBehaviour
- {
- async void Start()
- {
- Configuration config = new Configuration();
- config.BasePath = "https://api.sandbox.immutable.com";
- var apiInstance = new ActivitiesApi(config);
- var chainName = imtbl-zkevm-testnet; // string | The name of chain
- var activityId = "activityId_example"; // Guid | The id of activity
-
- try
- {
- // Get a single activity by ID
- GetActivityResult result = await apiInstance.GetActivityAsync(chainName, activityId);
- Debug.Log(result);
- Debug.Log("Done!");
- }
- catch (ApiException e)
- {
- Debug.LogError("Exception when calling ActivitiesApi.GetActivity: " + e.Message );
- Debug.LogError("Status Code: "+ e.ErrorCode);
- Debug.LogError(e.StackTrace);
- }
-
- }
- }
-}
-```
-
-
-## Documentation for API Endpoints
-
-All URIs are relative to *https://api.sandbox.immutable.com*
-
-Class | Method | HTTP request | Description
------------- | ------------- | ------------- | -------------
-*ActivitiesApi* | [**GetActivity**](ActivitiesApi.md#getactivity) | **GET** /v1/chains/{chain_name}/activities/{activity_id} | Get a single activity by ID
-*ActivitiesApi* | [**ListActivities**](ActivitiesApi.md#listactivities) | **GET** /v1/chains/{chain_name}/activities | List all activities
-*ActivitiesApi* | [**ListActivityHistory**](ActivitiesApi.md#listactivityhistory) | **GET** /v1/chains/{chain_name}/activity-history | List history of activities
-*ChainsApi* | [**ListChains**](ChainsApi.md#listchains) | **GET** /v1/chains | List supported chains
-*CollectionsApi* | [**GetCollection**](CollectionsApi.md#getcollection) | **GET** /v1/chains/{chain_name}/collections/{contract_address} | Get collection by contract address
-*CollectionsApi* | [**ListCollections**](CollectionsApi.md#listcollections) | **GET** /v1/chains/{chain_name}/collections | List all collections
-*CollectionsApi* | [**ListCollectionsByNFTOwner**](CollectionsApi.md#listcollectionsbynftowner) | **GET** /v1/chains/{chain_name}/accounts/{account_address}/collections | List collections by NFT owner
-*CollectionsApi* | [**RefreshCollectionMetadata**](CollectionsApi.md#refreshcollectionmetadata) | **POST** /v1/chains/{chain_name}/collections/{contract_address}/refresh-metadata | Refresh collection metadata
-*CraftingApi* | [**SignCraftingPayload**](CraftingApi.md#signcraftingpayload) | **POST** /v1/chains/{chain_name}/crafting/sign | Sign a crafting payload
-*MetadataApi* | [**GetMetadata**](MetadataApi.md#getmetadata) | **GET** /v1/chains/{chain_name}/collections/{contract_address}/metadata/{metadata_id} | Get metadata by ID
-*MetadataApi* | [**ListMetadata**](MetadataApi.md#listmetadata) | **GET** /v1/chains/{chain_name}/collections/{contract_address}/metadata | Get a list of metadata from the given contract
-*MetadataApi* | [**ListMetadataForChain**](MetadataApi.md#listmetadataforchain) | **GET** /v1/chains/{chain_name}/metadata | Get a list of metadata from the given chain
-*MetadataApi* | [**RefreshMetadataByID**](MetadataApi.md#refreshmetadatabyid) | **POST** /v1/chains/{chain_name}/collections/{contract_address}/metadata/refresh-metadata | Refresh stacked metadata
-*MetadataApi* | [**RefreshNFTMetadataByTokenID**](MetadataApi.md#refreshnftmetadatabytokenid) | **POST** /v1/chains/{chain_name}/collections/{contract_address}/nfts/refresh-metadata | Refresh NFT metadata
-*NftOwnersApi* | [**ListAllNFTOwners**](NftOwnersApi.md#listallnftowners) | **GET** /v1/chains/{chain_name}/nft-owners | List all NFT owners
-*NftOwnersApi* | [**ListNFTOwners**](NftOwnersApi.md#listnftowners) | **GET** /v1/chains/{chain_name}/collections/{contract_address}/nfts/{token_id}/owners | List NFT owners by token ID
-*NftOwnersApi* | [**ListOwnersByContractAddress**](NftOwnersApi.md#listownersbycontractaddress) | **GET** /v1/chains/{chain_name}/collections/{contract_address}/owners | List owners by contract address
-*NftsApi* | [**CreateMintRequest**](NftsApi.md#createmintrequest) | **POST** /v1/chains/{chain_name}/collections/{contract_address}/nfts/mint-requests | Mint NFTs
-*NftsApi* | [**GetMintRequest**](NftsApi.md#getmintrequest) | **GET** /v1/chains/{chain_name}/collections/{contract_address}/nfts/mint-requests/{reference_id} | Get mint request by reference ID
-*NftsApi* | [**GetNFT**](NftsApi.md#getnft) | **GET** /v1/chains/{chain_name}/collections/{contract_address}/nfts/{token_id} | Get NFT by token ID
-*NftsApi* | [**ListAllNFTs**](NftsApi.md#listallnfts) | **GET** /v1/chains/{chain_name}/nfts | List all NFTs
-*NftsApi* | [**ListMintRequests**](NftsApi.md#listmintrequests) | **GET** /v1/chains/{chain_name}/collections/{contract_address}/nfts/mint-requests | List mint requests
-*NftsApi* | [**ListNFTs**](NftsApi.md#listnfts) | **GET** /v1/chains/{chain_name}/collections/{contract_address}/nfts | List NFTs by contract address
-*NftsApi* | [**ListNFTsByAccountAddress**](NftsApi.md#listnftsbyaccountaddress) | **GET** /v1/chains/{chain_name}/accounts/{account_address}/nfts | List NFTs by account address
-*OrdersApi* | [**CancelOrders**](OrdersApi.md#cancelorders) | **POST** /v1/chains/{chain_name}/orders/cancel | Cancel one or more orders
-*OrdersApi* | [**CreateBid**](OrdersApi.md#createbid) | **POST** /v1/chains/{chain_name}/orders/bids | Create a bid
-*OrdersApi* | [**CreateCollectionBid**](OrdersApi.md#createcollectionbid) | **POST** /v1/chains/{chain_name}/orders/collection-bids | Create a collection bid
-*OrdersApi* | [**CreateListing**](OrdersApi.md#createlisting) | **POST** /v1/chains/{chain_name}/orders/listings | Create a listing
-*OrdersApi* | [**FulfillmentData**](OrdersApi.md#fulfillmentdata) | **POST** /v1/chains/{chain_name}/orders/fulfillment-data | Retrieve fulfillment data for orders
-*OrdersApi* | [**GetBid**](OrdersApi.md#getbid) | **GET** /v1/chains/{chain_name}/orders/bids/{bid_id} | Get a single bid by ID
-*OrdersApi* | [**GetCollectionBid**](OrdersApi.md#getcollectionbid) | **GET** /v1/chains/{chain_name}/orders/collection-bids/{collection_bid_id} | Get a single collection bid by ID
-*OrdersApi* | [**GetListing**](OrdersApi.md#getlisting) | **GET** /v1/chains/{chain_name}/orders/listings/{listing_id} | Get a single listing by ID
-*OrdersApi* | [**GetTrade**](OrdersApi.md#gettrade) | **GET** /v1/chains/{chain_name}/trades/{trade_id} | Get a single trade by ID
-*OrdersApi* | [**ListBids**](OrdersApi.md#listbids) | **GET** /v1/chains/{chain_name}/orders/bids | List all bids
-*OrdersApi* | [**ListCollectionBids**](OrdersApi.md#listcollectionbids) | **GET** /v1/chains/{chain_name}/orders/collection-bids | List all collection bids
-*OrdersApi* | [**ListListings**](OrdersApi.md#listlistings) | **GET** /v1/chains/{chain_name}/orders/listings | List all listings
-*OrdersApi* | [**ListTrades**](OrdersApi.md#listtrades) | **GET** /v1/chains/{chain_name}/trades | List all trades
-*PassportApi* | [**GetLinkedAddresses**](PassportApi.md#getlinkedaddresses) | **GET** /v1/chains/{chain_name}/passport/users/{user_id}/linked-addresses | Get Ethereum linked addresses for a user
-*PassportProfileApi* | [**GetUserInfo**](PassportProfileApi.md#getuserinfo) | **GET** /passport-profile/v1/user/info | Get all info for a Passport user
-*PassportProfileApi* | [**LinkWalletV2**](PassportProfileApi.md#linkwalletv2) | **POST** /passport-profile/v2/linked-wallets | Link wallet v2
-*PricingApi* | [**QuotesForNFTs**](PricingApi.md#quotesfornfts) | **GET** /experimental/chains/{chain_name}/quotes/{contract_address}/nfts | Experimental: Get pricing data for a list of token ids
-*PricingApi* | [**QuotesForStacks**](PricingApi.md#quotesforstacks) | **GET** /experimental/chains/{chain_name}/quotes/{contract_address}/stacks | Experimental: Get pricing data for a list of stack ids
-*StacksApi* | [**SearchNFTs**](StacksApi.md#searchnfts) | **GET** /experimental/chains/{chain_name}/search/nfts | Experimental: Search NFTs
-*StacksApi* | [**SearchStacks**](StacksApi.md#searchstacks) | **GET** /experimental/chains/{chain_name}/search/stacks | Experimental: Search NFT stacks
-*TokensApi* | [**GetERC20Token**](TokensApi.md#geterc20token) | **GET** /v1/chains/{chain_name}/tokens/{contract_address} | Get single ERC20 token
-*TokensApi* | [**ListERC20Tokens**](TokensApi.md#listerc20tokens) | **GET** /v1/chains/{chain_name}/tokens | List ERC20 tokens
-
-
-
-## Documentation for Models
-
- - [Model.APIError400](APIError400.md)
- - [Model.APIError401](APIError401.md)
- - [Model.APIError403](APIError403.md)
- - [Model.APIError404](APIError404.md)
- - [Model.APIError409](APIError409.md)
- - [Model.APIError429](APIError429.md)
- - [Model.APIError500](APIError500.md)
- - [Model.APIError501](APIError501.md)
- - [Model.ActiveOrderStatus](ActiveOrderStatus.md)
- - [Model.Activity](Activity.md)
- - [Model.ActivityAsset](ActivityAsset.md)
- - [Model.ActivityDetails](ActivityDetails.md)
- - [Model.ActivityNFT](ActivityNFT.md)
- - [Model.ActivityNativeToken](ActivityNativeToken.md)
- - [Model.ActivityToken](ActivityToken.md)
- - [Model.ActivityType](ActivityType.md)
- - [Model.AssetCollectionItem](AssetCollectionItem.md)
- - [Model.AssetVerificationStatus](AssetVerificationStatus.md)
- - [Model.BasicAPIError](BasicAPIError.md)
- - [Model.BidResult](BidResult.md)
- - [Model.BlockchainMetadata](BlockchainMetadata.md)
- - [Model.Burn](Burn.md)
- - [Model.Call](Call.md)
- - [Model.CancelOrdersRequestBody](CancelOrdersRequestBody.md)
- - [Model.CancelOrdersResult](CancelOrdersResult.md)
- - [Model.CancelOrdersResultData](CancelOrdersResultData.md)
- - [Model.CancelledOrderStatus](CancelledOrderStatus.md)
- - [Model.Chain](Chain.md)
- - [Model.ChainWithDetails](ChainWithDetails.md)
- - [Model.Collection](Collection.md)
- - [Model.CollectionBidResult](CollectionBidResult.md)
- - [Model.CollectionContractType](CollectionContractType.md)
- - [Model.CollectionMetadata](CollectionMetadata.md)
- - [Model.CreateBidRequestBody](CreateBidRequestBody.md)
- - [Model.CreateCollectionBidRequestBody](CreateCollectionBidRequestBody.md)
- - [Model.CreateListingRequestBody](CreateListingRequestBody.md)
- - [Model.CreateMintRequestRequest](CreateMintRequestRequest.md)
- - [Model.CreateMintRequestResult](CreateMintRequestResult.md)
- - [Model.Deposit](Deposit.md)
- - [Model.ERC1155CollectionItem](ERC1155CollectionItem.md)
- - [Model.ERC1155Item](ERC1155Item.md)
- - [Model.ERC20Item](ERC20Item.md)
- - [Model.ERC721CollectionItem](ERC721CollectionItem.md)
- - [Model.ERC721Item](ERC721Item.md)
- - [Model.ExpiredOrderStatus](ExpiredOrderStatus.md)
- - [Model.FailedOrderCancellation](FailedOrderCancellation.md)
- - [Model.Fee](Fee.md)
- - [Model.FillStatus](FillStatus.md)
- - [Model.FilledOrderStatus](FilledOrderStatus.md)
- - [Model.FulfillableOrder](FulfillableOrder.md)
- - [Model.FulfillmentData200Response](FulfillmentData200Response.md)
- - [Model.FulfillmentData200ResponseResult](FulfillmentData200ResponseResult.md)
- - [Model.FulfillmentDataRequest](FulfillmentDataRequest.md)
- - [Model.GetActivityResult](GetActivityResult.md)
- - [Model.GetCollectionResult](GetCollectionResult.md)
- - [Model.GetLinkedAddressesRes](GetLinkedAddressesRes.md)
- - [Model.GetMetadataResult](GetMetadataResult.md)
- - [Model.GetMintRequestResult](GetMintRequestResult.md)
- - [Model.GetNFTResult](GetNFTResult.md)
- - [Model.GetTokenResult](GetTokenResult.md)
- - [Model.InactiveOrderStatus](InactiveOrderStatus.md)
- - [Model.Item](Item.md)
- - [Model.LastTrade](LastTrade.md)
- - [Model.LinkWalletV2Request](LinkWalletV2Request.md)
- - [Model.ListActivitiesResult](ListActivitiesResult.md)
- - [Model.ListBidsResult](ListBidsResult.md)
- - [Model.ListChainsResult](ListChainsResult.md)
- - [Model.ListCollectionBidsResult](ListCollectionBidsResult.md)
- - [Model.ListCollectionOwnersResult](ListCollectionOwnersResult.md)
- - [Model.ListCollectionsResult](ListCollectionsResult.md)
- - [Model.ListListingsResult](ListListingsResult.md)
- - [Model.ListMetadataResult](ListMetadataResult.md)
- - [Model.ListMintRequestsResult](ListMintRequestsResult.md)
- - [Model.ListNFTOwnersResult](ListNFTOwnersResult.md)
- - [Model.ListNFTsByOwnerResult](ListNFTsByOwnerResult.md)
- - [Model.ListNFTsResult](ListNFTsResult.md)
- - [Model.ListTokensResult](ListTokensResult.md)
- - [Model.ListTradeResult](ListTradeResult.md)
- - [Model.Listing](Listing.md)
- - [Model.ListingResult](ListingResult.md)
- - [Model.Market](Market.md)
- - [Model.MarketNft](MarketNft.md)
- - [Model.MarketPriceDetails](MarketPriceDetails.md)
- - [Model.MarketPriceDetailsToken](MarketPriceDetailsToken.md)
- - [Model.MarketPriceERC20Token](MarketPriceERC20Token.md)
- - [Model.MarketPriceFees](MarketPriceFees.md)
- - [Model.MarketPriceNativeToken](MarketPriceNativeToken.md)
- - [Model.MarketplaceContractType](MarketplaceContractType.md)
- - [Model.Metadata](Metadata.md)
- - [Model.MetadataRefreshRateLimitResult](MetadataRefreshRateLimitResult.md)
- - [Model.Mint](Mint.md)
- - [Model.MintAsset](MintAsset.md)
- - [Model.MintRequestErrorMessage](MintRequestErrorMessage.md)
- - [Model.MintRequestStatus](MintRequestStatus.md)
- - [Model.NFT](NFT.md)
- - [Model.NFTBundle](NFTBundle.md)
- - [Model.NFTContractType](NFTContractType.md)
- - [Model.NFTMetadataAttribute](NFTMetadataAttribute.md)
- - [Model.NFTMetadataAttributeValue](NFTMetadataAttributeValue.md)
- - [Model.NFTMetadataRequest](NFTMetadataRequest.md)
- - [Model.NFTOwner](NFTOwner.md)
- - [Model.NFTQuoteResult](NFTQuoteResult.md)
- - [Model.NFTSale](NFTSale.md)
- - [Model.NFTWithBalance](NFTWithBalance.md)
- - [Model.NFTWithOwner](NFTWithOwner.md)
- - [Model.NFTWithStack](NFTWithStack.md)
- - [Model.NativeItem](NativeItem.md)
- - [Model.OperatorAllowlistContractStatus](OperatorAllowlistContractStatus.md)
- - [Model.OperatorAllowlistContractStatusInternal](OperatorAllowlistContractStatusInternal.md)
- - [Model.OperatorAllowlistStatus](OperatorAllowlistStatus.md)
- - [Model.OperatorAllowlistStatusDetails](OperatorAllowlistStatusDetails.md)
- - [Model.OperatorAllowlistStatusRequested](OperatorAllowlistStatusRequested.md)
- - [Model.OperatorAllowlistStatusUpdated](OperatorAllowlistStatusUpdated.md)
- - [Model.Order](Order.md)
- - [Model.OrderStatus](OrderStatus.md)
- - [Model.OrderStatusName](OrderStatusName.md)
- - [Model.OrganisationTier](OrganisationTier.md)
- - [Model.Page](Page.md)
- - [Model.PendingOrderStatus](PendingOrderStatus.md)
- - [Model.ProtocolData](ProtocolData.md)
- - [Model.QuotesForNFTsResult](QuotesForNFTsResult.md)
- - [Model.QuotesForStacksResult](QuotesForStacksResult.md)
- - [Model.RefreshCollectionMetadataRequest](RefreshCollectionMetadataRequest.md)
- - [Model.RefreshCollectionMetadataResult](RefreshCollectionMetadataResult.md)
- - [Model.RefreshMetadataByID](RefreshMetadataByID.md)
- - [Model.RefreshMetadataByIDRequest](RefreshMetadataByIDRequest.md)
- - [Model.RefreshMetadataByTokenID](RefreshMetadataByTokenID.md)
- - [Model.RefreshNFTMetadataByTokenIDRequest](RefreshNFTMetadataByTokenIDRequest.md)
- - [Model.RefreshableNFTAttributes](RefreshableNFTAttributes.md)
- - [Model.SaleFee](SaleFee.md)
- - [Model.SalePayment](SalePayment.md)
- - [Model.SalePaymentToken](SalePaymentToken.md)
- - [Model.SearchNFTsResult](SearchNFTsResult.md)
- - [Model.SearchStacksResult](SearchStacksResult.md)
- - [Model.SignCraftingRequest](SignCraftingRequest.md)
- - [Model.SignCraftingRequestMultiCaller](SignCraftingRequestMultiCaller.md)
- - [Model.SignCraftingResult](SignCraftingResult.md)
- - [Model.Stack](Stack.md)
- - [Model.StackBundle](StackBundle.md)
- - [Model.StackQuoteResult](StackQuoteResult.md)
- - [Model.Token](Token.md)
- - [Model.TokenContractType](TokenContractType.md)
- - [Model.Trade](Trade.md)
- - [Model.TradeBlockchainMetadata](TradeBlockchainMetadata.md)
- - [Model.TradeResult](TradeResult.md)
- - [Model.Transfer](Transfer.md)
- - [Model.UnfulfillableOrder](UnfulfillableOrder.md)
- - [Model.UserInfo](UserInfo.md)
- - [Model.VerificationRequest](VerificationRequest.md)
- - [Model.VerificationRequestContractType](VerificationRequestContractType.md)
- - [Model.VerificationRequestInternal](VerificationRequestInternal.md)
- - [Model.VerificationRequestStatus](VerificationRequestStatus.md)
- - [Model.Wallet](Wallet.md)
- - [Model.Withdrawal](Withdrawal.md)
-
-
-
-## Documentation for Authorization
-
-
-Authentication schemes defined for the API:
-
-### BearerAuth
-
-- **Type**: Bearer Authentication
-
-
-### ImmutableApiKey
-
-- **Type**: API key
-- **API key parameter name**: x-immutable-api-key
-- **Location**: HTTP header
-
diff --git a/src/Packages/ZkEvmApi/README.md.meta b/src/Packages/ZkEvmApi/README.md.meta
deleted file mode 100644
index 8997995c0..000000000
--- a/src/Packages/ZkEvmApi/README.md.meta
+++ /dev/null
@@ -1,7 +0,0 @@
-fileFormatVersion: 2
-guid: 90b3f65e61d344aea9491c515318ad91
-TextScriptImporter:
- externalObjects: {}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/src/Packages/ZkEvmApi/Runtime.meta b/src/Packages/ZkEvmApi/Runtime.meta
deleted file mode 100644
index 9c11c65a0..000000000
--- a/src/Packages/ZkEvmApi/Runtime.meta
+++ /dev/null
@@ -1,8 +0,0 @@
-fileFormatVersion: 2
-guid: f3501efe6bd5c406e8e1bea86d2a7afc
-folderAsset: yes
-DefaultImporter:
- externalObjects: {}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/src/Packages/ZkEvmApi/Runtime/Api.meta b/src/Packages/ZkEvmApi/Runtime/Api.meta
deleted file mode 100644
index ce497e2a1..000000000
--- a/src/Packages/ZkEvmApi/Runtime/Api.meta
+++ /dev/null
@@ -1,8 +0,0 @@
-fileFormatVersion: 2
-guid: ddc3131ac29433905b649bcbb7acd027
-folderAsset: yes
-DefaultImporter:
- externalObjects: {}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/src/Packages/ZkEvmApi/Runtime/Api/ActivitiesApi.cs b/src/Packages/ZkEvmApi/Runtime/Api/ActivitiesApi.cs
deleted file mode 100644
index 08b9698ba..000000000
--- a/src/Packages/ZkEvmApi/Runtime/Api/ActivitiesApi.cs
+++ /dev/null
@@ -1,906 +0,0 @@
-/*
- * Immutable zkEVM API
- *
- * Immutable Multi Rollup API
- *
- * The version of the OpenAPI document: 1.0.0
- * Contact: support@immutable.com
- * Generated by: https://github.com/openapitools/openapi-generator.git
- */
-
-
-using System;
-using System.Collections.Generic;
-using System.Collections.ObjectModel;
-using System.Linq;
-using System.Net;
-using System.Net.Mime;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Immutable.Api.ZkEvm.Api
-{
-
- ///
- /// Represents a collection of functions to interact with the API endpoints
- ///
- public interface IActivitiesApiSync : IApiAccessor
- {
- #region Synchronous Operations
- ///
- /// Get a single activity by ID
- ///
- ///
- /// Get a single activity by ID
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The id of activity
- /// GetActivityResult
- GetActivityResult GetActivity(string chainName, Guid activityId);
-
- ///
- /// Get a single activity by ID
- ///
- ///
- /// Get a single activity by ID
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The id of activity
- /// ApiResponse of GetActivityResult
- ApiResponse GetActivityWithHttpInfo(string chainName, Guid activityId);
- ///
- /// List all activities
- ///
- ///
- /// List all activities
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The contract address of NFT or ERC20 Token (optional)
- /// An `uint256` token id as string (optional)
- /// The account address activity contains (optional)
- /// The activity type (optional)
- /// The transaction hash of activity (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ListActivitiesResult
- ListActivitiesResult ListActivities(string chainName, string? contractAddress = default(string?), string? tokenId = default(string?), string? accountAddress = default(string?), ActivityType? activityType = default(ActivityType?), string? transactionHash = default(string?), string? pageCursor = default(string?), int? pageSize = default(int?));
-
- ///
- /// List all activities
- ///
- ///
- /// List all activities
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The contract address of NFT or ERC20 Token (optional)
- /// An `uint256` token id as string (optional)
- /// The account address activity contains (optional)
- /// The activity type (optional)
- /// The transaction hash of activity (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ApiResponse of ListActivitiesResult
- ApiResponse ListActivitiesWithHttpInfo(string chainName, string? contractAddress = default(string?), string? tokenId = default(string?), string? accountAddress = default(string?), ActivityType? activityType = default(ActivityType?), string? transactionHash = default(string?), string? pageCursor = default(string?), int? pageSize = default(int?));
- ///
- /// List history of activities
- ///
- ///
- /// List activities sorted by updated_at timestamp ascending, useful for time based data replication
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// From indexed at including given date
- /// To indexed at including given date (optional)
- /// The contract address of the collection (optional)
- /// The activity type (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ListActivitiesResult
- ListActivitiesResult ListActivityHistory(string chainName, DateTime fromUpdatedAt, DateTime? toUpdatedAt = default(DateTime?), string? contractAddress = default(string?), ActivityType? activityType = default(ActivityType?), string? pageCursor = default(string?), int? pageSize = default(int?));
-
- ///
- /// List history of activities
- ///
- ///
- /// List activities sorted by updated_at timestamp ascending, useful for time based data replication
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// From indexed at including given date
- /// To indexed at including given date (optional)
- /// The contract address of the collection (optional)
- /// The activity type (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ApiResponse of ListActivitiesResult
- ApiResponse ListActivityHistoryWithHttpInfo(string chainName, DateTime fromUpdatedAt, DateTime? toUpdatedAt = default(DateTime?), string? contractAddress = default(string?), ActivityType? activityType = default(ActivityType?), string? pageCursor = default(string?), int? pageSize = default(int?));
- #endregion Synchronous Operations
- }
-
- ///
- /// Represents a collection of functions to interact with the API endpoints
- ///
- public interface IActivitiesApiAsync : IApiAccessor
- {
- #region Asynchronous Operations
- ///
- /// Get a single activity by ID
- ///
- ///
- /// Get a single activity by ID
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The id of activity
- /// Cancellation Token to cancel the request.
- /// Task of GetActivityResult
- System.Threading.Tasks.Task GetActivityAsync(string chainName, Guid activityId, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
-
- ///
- /// Get a single activity by ID
- ///
- ///
- /// Get a single activity by ID
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The id of activity
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (GetActivityResult)
- System.Threading.Tasks.Task> GetActivityWithHttpInfoAsync(string chainName, Guid activityId, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
- ///
- /// List all activities
- ///
- ///
- /// List all activities
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The contract address of NFT or ERC20 Token (optional)
- /// An `uint256` token id as string (optional)
- /// The account address activity contains (optional)
- /// The activity type (optional)
- /// The transaction hash of activity (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ListActivitiesResult
- System.Threading.Tasks.Task ListActivitiesAsync(string chainName, string? contractAddress = default(string?), string? tokenId = default(string?), string? accountAddress = default(string?), ActivityType? activityType = default(ActivityType?), string? transactionHash = default(string?), string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
-
- ///
- /// List all activities
- ///
- ///
- /// List all activities
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The contract address of NFT or ERC20 Token (optional)
- /// An `uint256` token id as string (optional)
- /// The account address activity contains (optional)
- /// The activity type (optional)
- /// The transaction hash of activity (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (ListActivitiesResult)
- System.Threading.Tasks.Task> ListActivitiesWithHttpInfoAsync(string chainName, string? contractAddress = default(string?), string? tokenId = default(string?), string? accountAddress = default(string?), ActivityType? activityType = default(ActivityType?), string? transactionHash = default(string?), string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
- ///
- /// List history of activities
- ///
- ///
- /// List activities sorted by updated_at timestamp ascending, useful for time based data replication
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// From indexed at including given date
- /// To indexed at including given date (optional)
- /// The contract address of the collection (optional)
- /// The activity type (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ListActivitiesResult
- System.Threading.Tasks.Task ListActivityHistoryAsync(string chainName, DateTime fromUpdatedAt, DateTime? toUpdatedAt = default(DateTime?), string? contractAddress = default(string?), ActivityType? activityType = default(ActivityType?), string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
-
- ///
- /// List history of activities
- ///
- ///
- /// List activities sorted by updated_at timestamp ascending, useful for time based data replication
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// From indexed at including given date
- /// To indexed at including given date (optional)
- /// The contract address of the collection (optional)
- /// The activity type (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (ListActivitiesResult)
- System.Threading.Tasks.Task> ListActivityHistoryWithHttpInfoAsync(string chainName, DateTime fromUpdatedAt, DateTime? toUpdatedAt = default(DateTime?), string? contractAddress = default(string?), ActivityType? activityType = default(ActivityType?), string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
- #endregion Asynchronous Operations
- }
-
- ///
- /// Represents a collection of functions to interact with the API endpoints
- ///
- public interface IActivitiesApi : IActivitiesApiSync, IActivitiesApiAsync
- {
-
- }
-
- ///
- /// Represents a collection of functions to interact with the API endpoints
- ///
- public partial class ActivitiesApi : IDisposable, IActivitiesApi
- {
- private Immutable.Api.ZkEvm.Client.ExceptionFactory _exceptionFactory = (name, response) => null;
-
- ///
- /// Initializes a new instance of the class.
- /// **IMPORTANT** This will also create an instance of HttpClient, which is less than ideal.
- /// It's better to reuse the HttpClient and HttpClientHandler.
- ///
- ///
- public ActivitiesApi() : this((string)null)
- {
- }
-
- ///
- /// Initializes a new instance of the class.
- /// **IMPORTANT** This will also create an instance of HttpClient, which is less than ideal.
- /// It's better to reuse the HttpClient and HttpClientHandler.
- ///
- /// The target service's base path in URL format.
- ///
- ///
- public ActivitiesApi(string basePath)
- {
- this.Configuration = Immutable.Api.ZkEvm.Client.Configuration.MergeConfigurations(
- Immutable.Api.ZkEvm.Client.GlobalConfiguration.Instance,
- new Immutable.Api.ZkEvm.Client.Configuration { BasePath = basePath }
- );
- this.ApiClient = new Immutable.Api.ZkEvm.Client.ApiClient(this.Configuration.BasePath);
- this.Client = this.ApiClient;
- this.AsynchronousClient = this.ApiClient;
- this.ExceptionFactory = Immutable.Api.ZkEvm.Client.Configuration.DefaultExceptionFactory;
- }
-
- ///
- /// Initializes a new instance of the class using Configuration object.
- /// **IMPORTANT** This will also create an instance of HttpClient, which is less than ideal.
- /// It's better to reuse the HttpClient and HttpClientHandler.
- ///
- /// An instance of Configuration.
- ///
- ///
- public ActivitiesApi(Immutable.Api.ZkEvm.Client.Configuration configuration)
- {
- if (configuration == null) throw new ArgumentNullException("configuration");
-
- this.Configuration = Immutable.Api.ZkEvm.Client.Configuration.MergeConfigurations(
- Immutable.Api.ZkEvm.Client.GlobalConfiguration.Instance,
- configuration
- );
- this.ApiClient = new Immutable.Api.ZkEvm.Client.ApiClient(this.Configuration.BasePath);
- this.Client = this.ApiClient;
- this.AsynchronousClient = this.ApiClient;
- ExceptionFactory = Immutable.Api.ZkEvm.Client.Configuration.DefaultExceptionFactory;
- }
-
- ///
- /// Initializes a new instance of the class
- /// using a Configuration object and client instance.
- ///
- /// The client interface for synchronous API access.
- /// The client interface for asynchronous API access.
- /// The configuration object.
- ///
- public ActivitiesApi(Immutable.Api.ZkEvm.Client.ISynchronousClient client, Immutable.Api.ZkEvm.Client.IAsynchronousClient asyncClient, Immutable.Api.ZkEvm.Client.IReadableConfiguration configuration)
- {
- if (client == null) throw new ArgumentNullException("client");
- if (asyncClient == null) throw new ArgumentNullException("asyncClient");
- if (configuration == null) throw new ArgumentNullException("configuration");
-
- this.Client = client;
- this.AsynchronousClient = asyncClient;
- this.Configuration = configuration;
- this.ExceptionFactory = Immutable.Api.ZkEvm.Client.Configuration.DefaultExceptionFactory;
- }
-
- ///
- /// Disposes resources if they were created by us
- ///
- public void Dispose()
- {
- this.ApiClient?.Dispose();
- }
-
- ///
- /// Holds the ApiClient if created
- ///
- public Immutable.Api.ZkEvm.Client.ApiClient ApiClient { get; set; } = null;
-
- ///
- /// The client for accessing this underlying API asynchronously.
- ///
- public Immutable.Api.ZkEvm.Client.IAsynchronousClient AsynchronousClient { get; set; }
-
- ///
- /// The client for accessing this underlying API synchronously.
- ///
- public Immutable.Api.ZkEvm.Client.ISynchronousClient Client { get; set; }
-
- ///
- /// Gets the base path of the API client.
- ///
- /// The base path
- public string GetBasePath()
- {
- return this.Configuration.BasePath;
- }
-
- ///
- /// Gets or sets the configuration object
- ///
- /// An instance of the Configuration
- public Immutable.Api.ZkEvm.Client.IReadableConfiguration Configuration { get; set; }
-
- ///
- /// Provides a factory method hook for the creation of exceptions.
- ///
- public Immutable.Api.ZkEvm.Client.ExceptionFactory ExceptionFactory
- {
- get
- {
- if (_exceptionFactory != null && _exceptionFactory.GetInvocationList().Length > 1)
- {
- throw new InvalidOperationException("Multicast delegate for ExceptionFactory is unsupported.");
- }
- return _exceptionFactory;
- }
- set { _exceptionFactory = value; }
- }
-
- ///
- /// Get a single activity by ID Get a single activity by ID
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The id of activity
- /// GetActivityResult
- public GetActivityResult GetActivity(string chainName, Guid activityId)
- {
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = GetActivityWithHttpInfo(chainName, activityId);
- return localVarResponse.Data;
- }
-
- ///
- /// Get a single activity by ID Get a single activity by ID
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The id of activity
- /// ApiResponse of GetActivityResult
- public Immutable.Api.ZkEvm.Client.ApiResponse GetActivityWithHttpInfo(string chainName, Guid activityId)
- {
- // verify the required parameter 'chainName' is set
- if (chainName == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'chainName' when calling ActivitiesApi->GetActivity");
-
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- localVarRequestOptions.PathParameters.Add("chain_name", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(chainName)); // path parameter
- localVarRequestOptions.PathParameters.Add("activity_id", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(activityId)); // path parameter
-
-
- // make the HTTP request
- var localVarResponse = this.Client.Get("/v1/chains/{chain_name}/activities/{activity_id}", localVarRequestOptions, this.Configuration);
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("GetActivity", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- ///
- /// Get a single activity by ID Get a single activity by ID
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The id of activity
- /// Cancellation Token to cancel the request.
- /// Task of GetActivityResult
- public async System.Threading.Tasks.Task GetActivityAsync(string chainName, Guid activityId, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
- var task = GetActivityWithHttpInfoAsync(chainName, activityId, cancellationToken);
-#if UNITY_EDITOR || !UNITY_WEBGL
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task.ConfigureAwait(false);
-#else
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task;
-#endif
- return localVarResponse.Data;
- }
-
- ///
- /// Get a single activity by ID Get a single activity by ID
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The id of activity
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (GetActivityResult)
- public async System.Threading.Tasks.Task> GetActivityWithHttpInfoAsync(string chainName, Guid activityId, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
- // verify the required parameter 'chainName' is set
- if (chainName == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'chainName' when calling ActivitiesApi->GetActivity");
-
-
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- localVarRequestOptions.PathParameters.Add("chain_name", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(chainName)); // path parameter
- localVarRequestOptions.PathParameters.Add("activity_id", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(activityId)); // path parameter
-
-
- // make the HTTP request
-
- var task = this.AsynchronousClient.GetAsync("/v1/chains/{chain_name}/activities/{activity_id}", localVarRequestOptions, this.Configuration, cancellationToken);
-
-#if UNITY_EDITOR || !UNITY_WEBGL
- var localVarResponse = await task.ConfigureAwait(false);
-#else
- var localVarResponse = await task;
-#endif
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("GetActivity", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- ///
- /// List all activities List all activities
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The contract address of NFT or ERC20 Token (optional)
- /// An `uint256` token id as string (optional)
- /// The account address activity contains (optional)
- /// The activity type (optional)
- /// The transaction hash of activity (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ListActivitiesResult
- public ListActivitiesResult ListActivities(string chainName, string? contractAddress = default(string?), string? tokenId = default(string?), string? accountAddress = default(string?), ActivityType? activityType = default(ActivityType?), string? transactionHash = default(string?), string? pageCursor = default(string?), int? pageSize = default(int?))
- {
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = ListActivitiesWithHttpInfo(chainName, contractAddress, tokenId, accountAddress, activityType, transactionHash, pageCursor, pageSize);
- return localVarResponse.Data;
- }
-
- ///
- /// List all activities List all activities
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The contract address of NFT or ERC20 Token (optional)
- /// An `uint256` token id as string (optional)
- /// The account address activity contains (optional)
- /// The activity type (optional)
- /// The transaction hash of activity (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ApiResponse of ListActivitiesResult
- public Immutable.Api.ZkEvm.Client.ApiResponse ListActivitiesWithHttpInfo(string chainName, string? contractAddress = default(string?), string? tokenId = default(string?), string? accountAddress = default(string?), ActivityType? activityType = default(ActivityType?), string? transactionHash = default(string?), string? pageCursor = default(string?), int? pageSize = default(int?))
- {
- // verify the required parameter 'chainName' is set
- if (chainName == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'chainName' when calling ActivitiesApi->ListActivities");
-
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- localVarRequestOptions.PathParameters.Add("chain_name", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(chainName)); // path parameter
- if (contractAddress != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "contract_address", contractAddress));
- }
- if (tokenId != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "token_id", tokenId));
- }
- if (accountAddress != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "account_address", accountAddress));
- }
- if (activityType != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "activity_type", activityType));
- }
- if (transactionHash != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "transaction_hash", transactionHash));
- }
- if (pageCursor != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_cursor", pageCursor));
- }
- if (pageSize != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_size", pageSize));
- }
-
-
- // make the HTTP request
- var localVarResponse = this.Client.Get("/v1/chains/{chain_name}/activities", localVarRequestOptions, this.Configuration);
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("ListActivities", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- ///
- /// List all activities List all activities
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The contract address of NFT or ERC20 Token (optional)
- /// An `uint256` token id as string (optional)
- /// The account address activity contains (optional)
- /// The activity type (optional)
- /// The transaction hash of activity (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ListActivitiesResult
- public async System.Threading.Tasks.Task ListActivitiesAsync(string chainName, string? contractAddress = default(string?), string? tokenId = default(string?), string? accountAddress = default(string?), ActivityType? activityType = default(ActivityType?), string? transactionHash = default(string?), string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
- var task = ListActivitiesWithHttpInfoAsync(chainName, contractAddress, tokenId, accountAddress, activityType, transactionHash, pageCursor, pageSize, cancellationToken);
-#if UNITY_EDITOR || !UNITY_WEBGL
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task.ConfigureAwait(false);
-#else
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task;
-#endif
- return localVarResponse.Data;
- }
-
- ///
- /// List all activities List all activities
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The contract address of NFT or ERC20 Token (optional)
- /// An `uint256` token id as string (optional)
- /// The account address activity contains (optional)
- /// The activity type (optional)
- /// The transaction hash of activity (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (ListActivitiesResult)
- public async System.Threading.Tasks.Task> ListActivitiesWithHttpInfoAsync(string chainName, string? contractAddress = default(string?), string? tokenId = default(string?), string? accountAddress = default(string?), ActivityType? activityType = default(ActivityType?), string? transactionHash = default(string?), string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
- // verify the required parameter 'chainName' is set
- if (chainName == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'chainName' when calling ActivitiesApi->ListActivities");
-
-
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- localVarRequestOptions.PathParameters.Add("chain_name", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(chainName)); // path parameter
- if (contractAddress != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "contract_address", contractAddress));
- }
- if (tokenId != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "token_id", tokenId));
- }
- if (accountAddress != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "account_address", accountAddress));
- }
- if (activityType != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "activity_type", activityType));
- }
- if (transactionHash != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "transaction_hash", transactionHash));
- }
- if (pageCursor != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_cursor", pageCursor));
- }
- if (pageSize != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_size", pageSize));
- }
-
-
- // make the HTTP request
-
- var task = this.AsynchronousClient.GetAsync("/v1/chains/{chain_name}/activities", localVarRequestOptions, this.Configuration, cancellationToken);
-
-#if UNITY_EDITOR || !UNITY_WEBGL
- var localVarResponse = await task.ConfigureAwait(false);
-#else
- var localVarResponse = await task;
-#endif
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("ListActivities", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- ///
- /// List history of activities List activities sorted by updated_at timestamp ascending, useful for time based data replication
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// From indexed at including given date
- /// To indexed at including given date (optional)
- /// The contract address of the collection (optional)
- /// The activity type (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ListActivitiesResult
- public ListActivitiesResult ListActivityHistory(string chainName, DateTime fromUpdatedAt, DateTime? toUpdatedAt = default(DateTime?), string? contractAddress = default(string?), ActivityType? activityType = default(ActivityType?), string? pageCursor = default(string?), int? pageSize = default(int?))
- {
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = ListActivityHistoryWithHttpInfo(chainName, fromUpdatedAt, toUpdatedAt, contractAddress, activityType, pageCursor, pageSize);
- return localVarResponse.Data;
- }
-
- ///
- /// List history of activities List activities sorted by updated_at timestamp ascending, useful for time based data replication
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// From indexed at including given date
- /// To indexed at including given date (optional)
- /// The contract address of the collection (optional)
- /// The activity type (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ApiResponse of ListActivitiesResult
- public Immutable.Api.ZkEvm.Client.ApiResponse ListActivityHistoryWithHttpInfo(string chainName, DateTime fromUpdatedAt, DateTime? toUpdatedAt = default(DateTime?), string? contractAddress = default(string?), ActivityType? activityType = default(ActivityType?), string? pageCursor = default(string?), int? pageSize = default(int?))
- {
- // verify the required parameter 'chainName' is set
- if (chainName == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'chainName' when calling ActivitiesApi->ListActivityHistory");
-
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- localVarRequestOptions.PathParameters.Add("chain_name", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(chainName)); // path parameter
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "from_updated_at", fromUpdatedAt));
- if (toUpdatedAt != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "to_updated_at", toUpdatedAt));
- }
- if (contractAddress != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "contract_address", contractAddress));
- }
- if (activityType != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "activity_type", activityType));
- }
- if (pageCursor != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_cursor", pageCursor));
- }
- if (pageSize != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_size", pageSize));
- }
-
-
- // make the HTTP request
- var localVarResponse = this.Client.Get("/v1/chains/{chain_name}/activity-history", localVarRequestOptions, this.Configuration);
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("ListActivityHistory", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- ///
- /// List history of activities List activities sorted by updated_at timestamp ascending, useful for time based data replication
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// From indexed at including given date
- /// To indexed at including given date (optional)
- /// The contract address of the collection (optional)
- /// The activity type (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ListActivitiesResult
- public async System.Threading.Tasks.Task ListActivityHistoryAsync(string chainName, DateTime fromUpdatedAt, DateTime? toUpdatedAt = default(DateTime?), string? contractAddress = default(string?), ActivityType? activityType = default(ActivityType?), string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
- var task = ListActivityHistoryWithHttpInfoAsync(chainName, fromUpdatedAt, toUpdatedAt, contractAddress, activityType, pageCursor, pageSize, cancellationToken);
-#if UNITY_EDITOR || !UNITY_WEBGL
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task.ConfigureAwait(false);
-#else
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task;
-#endif
- return localVarResponse.Data;
- }
-
- ///
- /// List history of activities List activities sorted by updated_at timestamp ascending, useful for time based data replication
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// From indexed at including given date
- /// To indexed at including given date (optional)
- /// The contract address of the collection (optional)
- /// The activity type (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (ListActivitiesResult)
- public async System.Threading.Tasks.Task> ListActivityHistoryWithHttpInfoAsync(string chainName, DateTime fromUpdatedAt, DateTime? toUpdatedAt = default(DateTime?), string? contractAddress = default(string?), ActivityType? activityType = default(ActivityType?), string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
- // verify the required parameter 'chainName' is set
- if (chainName == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'chainName' when calling ActivitiesApi->ListActivityHistory");
-
-
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- localVarRequestOptions.PathParameters.Add("chain_name", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(chainName)); // path parameter
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "from_updated_at", fromUpdatedAt));
- if (toUpdatedAt != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "to_updated_at", toUpdatedAt));
- }
- if (contractAddress != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "contract_address", contractAddress));
- }
- if (activityType != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "activity_type", activityType));
- }
- if (pageCursor != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_cursor", pageCursor));
- }
- if (pageSize != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_size", pageSize));
- }
-
-
- // make the HTTP request
-
- var task = this.AsynchronousClient.GetAsync("/v1/chains/{chain_name}/activity-history", localVarRequestOptions, this.Configuration, cancellationToken);
-
-#if UNITY_EDITOR || !UNITY_WEBGL
- var localVarResponse = await task.ConfigureAwait(false);
-#else
- var localVarResponse = await task;
-#endif
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("ListActivityHistory", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- }
-}
diff --git a/src/Packages/ZkEvmApi/Runtime/Api/ActivitiesApi.cs.meta b/src/Packages/ZkEvmApi/Runtime/Api/ActivitiesApi.cs.meta
deleted file mode 100644
index 56364a6de..000000000
--- a/src/Packages/ZkEvmApi/Runtime/Api/ActivitiesApi.cs.meta
+++ /dev/null
@@ -1,11 +0,0 @@
-fileFormatVersion: 2
-guid: 337c2fa586f9b19c090e5efb50bb7a3a
-MonoImporter:
- externalObjects: {}
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/src/Packages/ZkEvmApi/Runtime/Api/ChainsApi.cs b/src/Packages/ZkEvmApi/Runtime/Api/ChainsApi.cs
deleted file mode 100644
index fef51a4b9..000000000
--- a/src/Packages/ZkEvmApi/Runtime/Api/ChainsApi.cs
+++ /dev/null
@@ -1,368 +0,0 @@
-/*
- * Immutable zkEVM API
- *
- * Immutable Multi Rollup API
- *
- * The version of the OpenAPI document: 1.0.0
- * Contact: support@immutable.com
- * Generated by: https://github.com/openapitools/openapi-generator.git
- */
-
-
-using System;
-using System.Collections.Generic;
-using System.Collections.ObjectModel;
-using System.Linq;
-using System.Net;
-using System.Net.Mime;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Immutable.Api.ZkEvm.Api
-{
-
- ///
- /// Represents a collection of functions to interact with the API endpoints
- ///
- public interface IChainsApiSync : IApiAccessor
- {
- #region Synchronous Operations
- ///
- /// List supported chains
- ///
- ///
- /// List supported chains
- ///
- /// Thrown when fails to make API call
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ListChainsResult
- ListChainsResult ListChains(string? pageCursor = default(string?), int? pageSize = default(int?));
-
- ///
- /// List supported chains
- ///
- ///
- /// List supported chains
- ///
- /// Thrown when fails to make API call
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ApiResponse of ListChainsResult
- ApiResponse ListChainsWithHttpInfo(string? pageCursor = default(string?), int? pageSize = default(int?));
- #endregion Synchronous Operations
- }
-
- ///
- /// Represents a collection of functions to interact with the API endpoints
- ///
- public interface IChainsApiAsync : IApiAccessor
- {
- #region Asynchronous Operations
- ///
- /// List supported chains
- ///
- ///
- /// List supported chains
- ///
- /// Thrown when fails to make API call
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ListChainsResult
- System.Threading.Tasks.Task ListChainsAsync(string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
-
- ///
- /// List supported chains
- ///
- ///
- /// List supported chains
- ///
- /// Thrown when fails to make API call
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (ListChainsResult)
- System.Threading.Tasks.Task> ListChainsWithHttpInfoAsync(string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
- #endregion Asynchronous Operations
- }
-
- ///
- /// Represents a collection of functions to interact with the API endpoints
- ///
- public interface IChainsApi : IChainsApiSync, IChainsApiAsync
- {
-
- }
-
- ///
- /// Represents a collection of functions to interact with the API endpoints
- ///
- public partial class ChainsApi : IDisposable, IChainsApi
- {
- private Immutable.Api.ZkEvm.Client.ExceptionFactory _exceptionFactory = (name, response) => null;
-
- ///
- /// Initializes a new instance of the class.
- /// **IMPORTANT** This will also create an instance of HttpClient, which is less than ideal.
- /// It's better to reuse the HttpClient and HttpClientHandler.
- ///
- ///
- public ChainsApi() : this((string)null)
- {
- }
-
- ///
- /// Initializes a new instance of the class.
- /// **IMPORTANT** This will also create an instance of HttpClient, which is less than ideal.
- /// It's better to reuse the HttpClient and HttpClientHandler.
- ///
- /// The target service's base path in URL format.
- ///
- ///
- public ChainsApi(string basePath)
- {
- this.Configuration = Immutable.Api.ZkEvm.Client.Configuration.MergeConfigurations(
- Immutable.Api.ZkEvm.Client.GlobalConfiguration.Instance,
- new Immutable.Api.ZkEvm.Client.Configuration { BasePath = basePath }
- );
- this.ApiClient = new Immutable.Api.ZkEvm.Client.ApiClient(this.Configuration.BasePath);
- this.Client = this.ApiClient;
- this.AsynchronousClient = this.ApiClient;
- this.ExceptionFactory = Immutable.Api.ZkEvm.Client.Configuration.DefaultExceptionFactory;
- }
-
- ///
- /// Initializes a new instance of the class using Configuration object.
- /// **IMPORTANT** This will also create an instance of HttpClient, which is less than ideal.
- /// It's better to reuse the HttpClient and HttpClientHandler.
- ///
- /// An instance of Configuration.
- ///
- ///
- public ChainsApi(Immutable.Api.ZkEvm.Client.Configuration configuration)
- {
- if (configuration == null) throw new ArgumentNullException("configuration");
-
- this.Configuration = Immutable.Api.ZkEvm.Client.Configuration.MergeConfigurations(
- Immutable.Api.ZkEvm.Client.GlobalConfiguration.Instance,
- configuration
- );
- this.ApiClient = new Immutable.Api.ZkEvm.Client.ApiClient(this.Configuration.BasePath);
- this.Client = this.ApiClient;
- this.AsynchronousClient = this.ApiClient;
- ExceptionFactory = Immutable.Api.ZkEvm.Client.Configuration.DefaultExceptionFactory;
- }
-
- ///
- /// Initializes a new instance of the class
- /// using a Configuration object and client instance.
- ///
- /// The client interface for synchronous API access.
- /// The client interface for asynchronous API access.
- /// The configuration object.
- ///
- public ChainsApi(Immutable.Api.ZkEvm.Client.ISynchronousClient client, Immutable.Api.ZkEvm.Client.IAsynchronousClient asyncClient, Immutable.Api.ZkEvm.Client.IReadableConfiguration configuration)
- {
- if (client == null) throw new ArgumentNullException("client");
- if (asyncClient == null) throw new ArgumentNullException("asyncClient");
- if (configuration == null) throw new ArgumentNullException("configuration");
-
- this.Client = client;
- this.AsynchronousClient = asyncClient;
- this.Configuration = configuration;
- this.ExceptionFactory = Immutable.Api.ZkEvm.Client.Configuration.DefaultExceptionFactory;
- }
-
- ///
- /// Disposes resources if they were created by us
- ///
- public void Dispose()
- {
- this.ApiClient?.Dispose();
- }
-
- ///
- /// Holds the ApiClient if created
- ///
- public Immutable.Api.ZkEvm.Client.ApiClient ApiClient { get; set; } = null;
-
- ///
- /// The client for accessing this underlying API asynchronously.
- ///
- public Immutable.Api.ZkEvm.Client.IAsynchronousClient AsynchronousClient { get; set; }
-
- ///
- /// The client for accessing this underlying API synchronously.
- ///
- public Immutable.Api.ZkEvm.Client.ISynchronousClient Client { get; set; }
-
- ///
- /// Gets the base path of the API client.
- ///
- /// The base path
- public string GetBasePath()
- {
- return this.Configuration.BasePath;
- }
-
- ///
- /// Gets or sets the configuration object
- ///
- /// An instance of the Configuration
- public Immutable.Api.ZkEvm.Client.IReadableConfiguration Configuration { get; set; }
-
- ///
- /// Provides a factory method hook for the creation of exceptions.
- ///
- public Immutable.Api.ZkEvm.Client.ExceptionFactory ExceptionFactory
- {
- get
- {
- if (_exceptionFactory != null && _exceptionFactory.GetInvocationList().Length > 1)
- {
- throw new InvalidOperationException("Multicast delegate for ExceptionFactory is unsupported.");
- }
- return _exceptionFactory;
- }
- set { _exceptionFactory = value; }
- }
-
- ///
- /// List supported chains List supported chains
- ///
- /// Thrown when fails to make API call
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ListChainsResult
- public ListChainsResult ListChains(string? pageCursor = default(string?), int? pageSize = default(int?))
- {
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = ListChainsWithHttpInfo(pageCursor, pageSize);
- return localVarResponse.Data;
- }
-
- ///
- /// List supported chains List supported chains
- ///
- /// Thrown when fails to make API call
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ApiResponse of ListChainsResult
- public Immutable.Api.ZkEvm.Client.ApiResponse ListChainsWithHttpInfo(string? pageCursor = default(string?), int? pageSize = default(int?))
- {
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- if (pageCursor != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_cursor", pageCursor));
- }
- if (pageSize != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_size", pageSize));
- }
-
-
- // make the HTTP request
- var localVarResponse = this.Client.Get("/v1/chains", localVarRequestOptions, this.Configuration);
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("ListChains", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- ///
- /// List supported chains List supported chains
- ///
- /// Thrown when fails to make API call
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ListChainsResult
- public async System.Threading.Tasks.Task ListChainsAsync(string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
- var task = ListChainsWithHttpInfoAsync(pageCursor, pageSize, cancellationToken);
-#if UNITY_EDITOR || !UNITY_WEBGL
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task.ConfigureAwait(false);
-#else
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task;
-#endif
- return localVarResponse.Data;
- }
-
- ///
- /// List supported chains List supported chains
- ///
- /// Thrown when fails to make API call
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (ListChainsResult)
- public async System.Threading.Tasks.Task> ListChainsWithHttpInfoAsync(string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
-
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- if (pageCursor != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_cursor", pageCursor));
- }
- if (pageSize != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_size", pageSize));
- }
-
-
- // make the HTTP request
-
- var task = this.AsynchronousClient.GetAsync("/v1/chains", localVarRequestOptions, this.Configuration, cancellationToken);
-
-#if UNITY_EDITOR || !UNITY_WEBGL
- var localVarResponse = await task.ConfigureAwait(false);
-#else
- var localVarResponse = await task;
-#endif
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("ListChains", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- }
-}
diff --git a/src/Packages/ZkEvmApi/Runtime/Api/ChainsApi.cs.meta b/src/Packages/ZkEvmApi/Runtime/Api/ChainsApi.cs.meta
deleted file mode 100644
index 9cd00e453..000000000
--- a/src/Packages/ZkEvmApi/Runtime/Api/ChainsApi.cs.meta
+++ /dev/null
@@ -1,11 +0,0 @@
-fileFormatVersion: 2
-guid: d1b30af6e59055a74a7842ae63675c47
-MonoImporter:
- externalObjects: {}
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/src/Packages/ZkEvmApi/Runtime/Api/CollectionsApi.cs b/src/Packages/ZkEvmApi/Runtime/Api/CollectionsApi.cs
deleted file mode 100644
index cb11fccb2..000000000
--- a/src/Packages/ZkEvmApi/Runtime/Api/CollectionsApi.cs
+++ /dev/null
@@ -1,1322 +0,0 @@
-/*
- * Immutable zkEVM API
- *
- * Immutable Multi Rollup API
- *
- * The version of the OpenAPI document: 1.0.0
- * Contact: support@immutable.com
- * Generated by: https://github.com/openapitools/openapi-generator.git
- */
-
-
-using System;
-using System.Collections.Generic;
-using System.Collections.ObjectModel;
-using System.Linq;
-using System.Net;
-using System.Net.Mime;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Immutable.Api.ZkEvm.Api
-{
-
- ///
- /// Represents a collection of functions to interact with the API endpoints
- ///
- public interface ICollectionsApiSync : IApiAccessor
- {
- #region Synchronous Operations
- ///
- /// Get collection by contract address
- ///
- ///
- /// Get collection by contract address
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// GetCollectionResult
- GetCollectionResult GetCollection(string contractAddress, string chainName);
-
- ///
- /// Get collection by contract address
- ///
- ///
- /// Get collection by contract address
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// ApiResponse of GetCollectionResult
- ApiResponse GetCollectionWithHttpInfo(string contractAddress, string chainName);
- ///
- /// List all collections
- ///
- ///
- /// List all collections
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// List of contract addresses to filter by (optional)
- /// List of verification status to filter by (optional)
- /// Datetime to use as the oldest updated timestamp (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ListCollectionsResult
- ListCollectionsResult ListCollections(string chainName, List? contractAddress = default(List?), List? verificationStatus = default(List?), DateTime? fromUpdatedAt = default(DateTime?), string? pageCursor = default(string?), int? pageSize = default(int?));
-
- ///
- /// List all collections
- ///
- ///
- /// List all collections
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// List of contract addresses to filter by (optional)
- /// List of verification status to filter by (optional)
- /// Datetime to use as the oldest updated timestamp (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ApiResponse of ListCollectionsResult
- ApiResponse ListCollectionsWithHttpInfo(string chainName, List? contractAddress = default(List?), List? verificationStatus = default(List?), DateTime? fromUpdatedAt = default(DateTime?), string? pageCursor = default(string?), int? pageSize = default(int?));
- ///
- /// List collections by NFT owner
- ///
- ///
- /// List collections by NFT owner account address
- ///
- /// Thrown when fails to make API call
- /// Account address
- /// The name of chain
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ListCollectionsResult
- ListCollectionsResult ListCollectionsByNFTOwner(string accountAddress, string chainName, string? pageCursor = default(string?), int? pageSize = default(int?));
-
- ///
- /// List collections by NFT owner
- ///
- ///
- /// List collections by NFT owner account address
- ///
- /// Thrown when fails to make API call
- /// Account address
- /// The name of chain
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ApiResponse of ListCollectionsResult
- ApiResponse ListCollectionsByNFTOwnerWithHttpInfo(string accountAddress, string chainName, string? pageCursor = default(string?), int? pageSize = default(int?));
- ///
- /// Refresh collection metadata
- ///
- ///
- /// Refresh collection metadata
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// The request body
- /// RefreshCollectionMetadataResult
- RefreshCollectionMetadataResult RefreshCollectionMetadata(string contractAddress, string chainName, RefreshCollectionMetadataRequest refreshCollectionMetadataRequest);
-
- ///
- /// Refresh collection metadata
- ///
- ///
- /// Refresh collection metadata
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// The request body
- /// ApiResponse of RefreshCollectionMetadataResult
- ApiResponse RefreshCollectionMetadataWithHttpInfo(string contractAddress, string chainName, RefreshCollectionMetadataRequest refreshCollectionMetadataRequest);
- ///
- /// Refresh collection metadata internal
- ///
- ///
- /// Refresh collection metadata internal
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// The environment of the collection
- /// The request body
- /// RefreshCollectionMetadataResult
- RefreshCollectionMetadataResult RefreshCollectionMetadataInternal(string contractAddress, string chainName, string environment, RefreshCollectionMetadataRequest refreshCollectionMetadataRequest);
-
- ///
- /// Refresh collection metadata internal
- ///
- ///
- /// Refresh collection metadata internal
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// The environment of the collection
- /// The request body
- /// ApiResponse of RefreshCollectionMetadataResult
- ApiResponse RefreshCollectionMetadataInternalWithHttpInfo(string contractAddress, string chainName, string environment, RefreshCollectionMetadataRequest refreshCollectionMetadataRequest);
- #endregion Synchronous Operations
- }
-
- ///
- /// Represents a collection of functions to interact with the API endpoints
- ///
- public interface ICollectionsApiAsync : IApiAccessor
- {
- #region Asynchronous Operations
- ///
- /// Get collection by contract address
- ///
- ///
- /// Get collection by contract address
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// Cancellation Token to cancel the request.
- /// Task of GetCollectionResult
- System.Threading.Tasks.Task GetCollectionAsync(string contractAddress, string chainName, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
-
- ///
- /// Get collection by contract address
- ///
- ///
- /// Get collection by contract address
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (GetCollectionResult)
- System.Threading.Tasks.Task> GetCollectionWithHttpInfoAsync(string contractAddress, string chainName, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
- ///
- /// List all collections
- ///
- ///
- /// List all collections
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// List of contract addresses to filter by (optional)
- /// List of verification status to filter by (optional)
- /// Datetime to use as the oldest updated timestamp (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ListCollectionsResult
- System.Threading.Tasks.Task ListCollectionsAsync(string chainName, List? contractAddress = default(List?), List? verificationStatus = default(List?), DateTime? fromUpdatedAt = default(DateTime?), string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
-
- ///
- /// List all collections
- ///
- ///
- /// List all collections
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// List of contract addresses to filter by (optional)
- /// List of verification status to filter by (optional)
- /// Datetime to use as the oldest updated timestamp (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (ListCollectionsResult)
- System.Threading.Tasks.Task> ListCollectionsWithHttpInfoAsync(string chainName, List? contractAddress = default(List?), List? verificationStatus = default(List?), DateTime? fromUpdatedAt = default(DateTime?), string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
- ///
- /// List collections by NFT owner
- ///
- ///
- /// List collections by NFT owner account address
- ///
- /// Thrown when fails to make API call
- /// Account address
- /// The name of chain
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ListCollectionsResult
- System.Threading.Tasks.Task ListCollectionsByNFTOwnerAsync(string accountAddress, string chainName, string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
-
- ///
- /// List collections by NFT owner
- ///
- ///
- /// List collections by NFT owner account address
- ///
- /// Thrown when fails to make API call
- /// Account address
- /// The name of chain
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (ListCollectionsResult)
- System.Threading.Tasks.Task> ListCollectionsByNFTOwnerWithHttpInfoAsync(string accountAddress, string chainName, string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
- ///
- /// Refresh collection metadata
- ///
- ///
- /// Refresh collection metadata
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// The request body
- /// Cancellation Token to cancel the request.
- /// Task of RefreshCollectionMetadataResult
- System.Threading.Tasks.Task RefreshCollectionMetadataAsync(string contractAddress, string chainName, RefreshCollectionMetadataRequest refreshCollectionMetadataRequest, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
-
- ///
- /// Refresh collection metadata
- ///
- ///
- /// Refresh collection metadata
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// The request body
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (RefreshCollectionMetadataResult)
- System.Threading.Tasks.Task> RefreshCollectionMetadataWithHttpInfoAsync(string contractAddress, string chainName, RefreshCollectionMetadataRequest refreshCollectionMetadataRequest, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
- ///
- /// Refresh collection metadata internal
- ///
- ///
- /// Refresh collection metadata internal
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// The environment of the collection
- /// The request body
- /// Cancellation Token to cancel the request.
- /// Task of RefreshCollectionMetadataResult
- System.Threading.Tasks.Task RefreshCollectionMetadataInternalAsync(string contractAddress, string chainName, string environment, RefreshCollectionMetadataRequest refreshCollectionMetadataRequest, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
-
- ///
- /// Refresh collection metadata internal
- ///
- ///
- /// Refresh collection metadata internal
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// The environment of the collection
- /// The request body
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (RefreshCollectionMetadataResult)
- System.Threading.Tasks.Task> RefreshCollectionMetadataInternalWithHttpInfoAsync(string contractAddress, string chainName, string environment, RefreshCollectionMetadataRequest refreshCollectionMetadataRequest, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
- #endregion Asynchronous Operations
- }
-
- ///
- /// Represents a collection of functions to interact with the API endpoints
- ///
- public interface ICollectionsApi : ICollectionsApiSync, ICollectionsApiAsync
- {
-
- }
-
- ///
- /// Represents a collection of functions to interact with the API endpoints
- ///
- public partial class CollectionsApi : IDisposable, ICollectionsApi
- {
- private Immutable.Api.ZkEvm.Client.ExceptionFactory _exceptionFactory = (name, response) => null;
-
- ///
- /// Initializes a new instance of the class.
- /// **IMPORTANT** This will also create an instance of HttpClient, which is less than ideal.
- /// It's better to reuse the HttpClient and HttpClientHandler.
- ///
- ///
- public CollectionsApi() : this((string)null)
- {
- }
-
- ///
- /// Initializes a new instance of the class.
- /// **IMPORTANT** This will also create an instance of HttpClient, which is less than ideal.
- /// It's better to reuse the HttpClient and HttpClientHandler.
- ///
- /// The target service's base path in URL format.
- ///
- ///
- public CollectionsApi(string basePath)
- {
- this.Configuration = Immutable.Api.ZkEvm.Client.Configuration.MergeConfigurations(
- Immutable.Api.ZkEvm.Client.GlobalConfiguration.Instance,
- new Immutable.Api.ZkEvm.Client.Configuration { BasePath = basePath }
- );
- this.ApiClient = new Immutable.Api.ZkEvm.Client.ApiClient(this.Configuration.BasePath);
- this.Client = this.ApiClient;
- this.AsynchronousClient = this.ApiClient;
- this.ExceptionFactory = Immutable.Api.ZkEvm.Client.Configuration.DefaultExceptionFactory;
- }
-
- ///
- /// Initializes a new instance of the class using Configuration object.
- /// **IMPORTANT** This will also create an instance of HttpClient, which is less than ideal.
- /// It's better to reuse the HttpClient and HttpClientHandler.
- ///
- /// An instance of Configuration.
- ///
- ///
- public CollectionsApi(Immutable.Api.ZkEvm.Client.Configuration configuration)
- {
- if (configuration == null) throw new ArgumentNullException("configuration");
-
- this.Configuration = Immutable.Api.ZkEvm.Client.Configuration.MergeConfigurations(
- Immutable.Api.ZkEvm.Client.GlobalConfiguration.Instance,
- configuration
- );
- this.ApiClient = new Immutable.Api.ZkEvm.Client.ApiClient(this.Configuration.BasePath);
- this.Client = this.ApiClient;
- this.AsynchronousClient = this.ApiClient;
- ExceptionFactory = Immutable.Api.ZkEvm.Client.Configuration.DefaultExceptionFactory;
- }
-
- ///
- /// Initializes a new instance of the class
- /// using a Configuration object and client instance.
- ///
- /// The client interface for synchronous API access.
- /// The client interface for asynchronous API access.
- /// The configuration object.
- ///
- public CollectionsApi(Immutable.Api.ZkEvm.Client.ISynchronousClient client, Immutable.Api.ZkEvm.Client.IAsynchronousClient asyncClient, Immutable.Api.ZkEvm.Client.IReadableConfiguration configuration)
- {
- if (client == null) throw new ArgumentNullException("client");
- if (asyncClient == null) throw new ArgumentNullException("asyncClient");
- if (configuration == null) throw new ArgumentNullException("configuration");
-
- this.Client = client;
- this.AsynchronousClient = asyncClient;
- this.Configuration = configuration;
- this.ExceptionFactory = Immutable.Api.ZkEvm.Client.Configuration.DefaultExceptionFactory;
- }
-
- ///
- /// Disposes resources if they were created by us
- ///
- public void Dispose()
- {
- this.ApiClient?.Dispose();
- }
-
- ///
- /// Holds the ApiClient if created
- ///
- public Immutable.Api.ZkEvm.Client.ApiClient ApiClient { get; set; } = null;
-
- ///
- /// The client for accessing this underlying API asynchronously.
- ///
- public Immutable.Api.ZkEvm.Client.IAsynchronousClient AsynchronousClient { get; set; }
-
- ///
- /// The client for accessing this underlying API synchronously.
- ///
- public Immutable.Api.ZkEvm.Client.ISynchronousClient Client { get; set; }
-
- ///
- /// Gets the base path of the API client.
- ///
- /// The base path
- public string GetBasePath()
- {
- return this.Configuration.BasePath;
- }
-
- ///
- /// Gets or sets the configuration object
- ///
- /// An instance of the Configuration
- public Immutable.Api.ZkEvm.Client.IReadableConfiguration Configuration { get; set; }
-
- ///
- /// Provides a factory method hook for the creation of exceptions.
- ///
- public Immutable.Api.ZkEvm.Client.ExceptionFactory ExceptionFactory
- {
- get
- {
- if (_exceptionFactory != null && _exceptionFactory.GetInvocationList().Length > 1)
- {
- throw new InvalidOperationException("Multicast delegate for ExceptionFactory is unsupported.");
- }
- return _exceptionFactory;
- }
- set { _exceptionFactory = value; }
- }
-
- ///
- /// Get collection by contract address Get collection by contract address
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// GetCollectionResult
- public GetCollectionResult GetCollection(string contractAddress, string chainName)
- {
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = GetCollectionWithHttpInfo(contractAddress, chainName);
- return localVarResponse.Data;
- }
-
- ///
- /// Get collection by contract address Get collection by contract address
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// ApiResponse of GetCollectionResult
- public Immutable.Api.ZkEvm.Client.ApiResponse GetCollectionWithHttpInfo(string contractAddress, string chainName)
- {
- // verify the required parameter 'contractAddress' is set
- if (contractAddress == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'contractAddress' when calling CollectionsApi->GetCollection");
-
- // verify the required parameter 'chainName' is set
- if (chainName == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'chainName' when calling CollectionsApi->GetCollection");
-
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- localVarRequestOptions.PathParameters.Add("contract_address", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(contractAddress)); // path parameter
- localVarRequestOptions.PathParameters.Add("chain_name", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(chainName)); // path parameter
-
-
- // make the HTTP request
- var localVarResponse = this.Client.Get("/v1/chains/{chain_name}/collections/{contract_address}", localVarRequestOptions, this.Configuration);
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("GetCollection", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- ///
- /// Get collection by contract address Get collection by contract address
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// Cancellation Token to cancel the request.
- /// Task of GetCollectionResult
- public async System.Threading.Tasks.Task GetCollectionAsync(string contractAddress, string chainName, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
- var task = GetCollectionWithHttpInfoAsync(contractAddress, chainName, cancellationToken);
-#if UNITY_EDITOR || !UNITY_WEBGL
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task.ConfigureAwait(false);
-#else
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task;
-#endif
- return localVarResponse.Data;
- }
-
- ///
- /// Get collection by contract address Get collection by contract address
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (GetCollectionResult)
- public async System.Threading.Tasks.Task> GetCollectionWithHttpInfoAsync(string contractAddress, string chainName, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
- // verify the required parameter 'contractAddress' is set
- if (contractAddress == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'contractAddress' when calling CollectionsApi->GetCollection");
-
- // verify the required parameter 'chainName' is set
- if (chainName == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'chainName' when calling CollectionsApi->GetCollection");
-
-
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- localVarRequestOptions.PathParameters.Add("contract_address", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(contractAddress)); // path parameter
- localVarRequestOptions.PathParameters.Add("chain_name", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(chainName)); // path parameter
-
-
- // make the HTTP request
-
- var task = this.AsynchronousClient.GetAsync("/v1/chains/{chain_name}/collections/{contract_address}", localVarRequestOptions, this.Configuration, cancellationToken);
-
-#if UNITY_EDITOR || !UNITY_WEBGL
- var localVarResponse = await task.ConfigureAwait(false);
-#else
- var localVarResponse = await task;
-#endif
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("GetCollection", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- ///
- /// List all collections List all collections
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// List of contract addresses to filter by (optional)
- /// List of verification status to filter by (optional)
- /// Datetime to use as the oldest updated timestamp (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ListCollectionsResult
- public ListCollectionsResult ListCollections(string chainName, List? contractAddress = default(List?), List? verificationStatus = default(List?), DateTime? fromUpdatedAt = default(DateTime?), string? pageCursor = default(string?), int? pageSize = default(int?))
- {
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = ListCollectionsWithHttpInfo(chainName, contractAddress, verificationStatus, fromUpdatedAt, pageCursor, pageSize);
- return localVarResponse.Data;
- }
-
- ///
- /// List all collections List all collections
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// List of contract addresses to filter by (optional)
- /// List of verification status to filter by (optional)
- /// Datetime to use as the oldest updated timestamp (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ApiResponse of ListCollectionsResult
- public Immutable.Api.ZkEvm.Client.ApiResponse ListCollectionsWithHttpInfo(string chainName, List? contractAddress = default(List?), List? verificationStatus = default(List?), DateTime? fromUpdatedAt = default(DateTime?), string? pageCursor = default(string?), int? pageSize = default(int?))
- {
- // verify the required parameter 'chainName' is set
- if (chainName == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'chainName' when calling CollectionsApi->ListCollections");
-
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- localVarRequestOptions.PathParameters.Add("chain_name", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(chainName)); // path parameter
- if (contractAddress != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("multi", "contract_address", contractAddress));
- }
- if (verificationStatus != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("multi", "verification_status", verificationStatus));
- }
- if (fromUpdatedAt != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "from_updated_at", fromUpdatedAt));
- }
- if (pageCursor != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_cursor", pageCursor));
- }
- if (pageSize != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_size", pageSize));
- }
-
-
- // make the HTTP request
- var localVarResponse = this.Client.Get("/v1/chains/{chain_name}/collections", localVarRequestOptions, this.Configuration);
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("ListCollections", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- ///
- /// List all collections List all collections
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// List of contract addresses to filter by (optional)
- /// List of verification status to filter by (optional)
- /// Datetime to use as the oldest updated timestamp (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ListCollectionsResult
- public async System.Threading.Tasks.Task ListCollectionsAsync(string chainName, List? contractAddress = default(List?), List? verificationStatus = default(List?), DateTime? fromUpdatedAt = default(DateTime?), string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
- var task = ListCollectionsWithHttpInfoAsync(chainName, contractAddress, verificationStatus, fromUpdatedAt, pageCursor, pageSize, cancellationToken);
-#if UNITY_EDITOR || !UNITY_WEBGL
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task.ConfigureAwait(false);
-#else
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task;
-#endif
- return localVarResponse.Data;
- }
-
- ///
- /// List all collections List all collections
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// List of contract addresses to filter by (optional)
- /// List of verification status to filter by (optional)
- /// Datetime to use as the oldest updated timestamp (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (ListCollectionsResult)
- public async System.Threading.Tasks.Task> ListCollectionsWithHttpInfoAsync(string chainName, List? contractAddress = default(List?), List? verificationStatus = default(List?), DateTime? fromUpdatedAt = default(DateTime?), string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
- // verify the required parameter 'chainName' is set
- if (chainName == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'chainName' when calling CollectionsApi->ListCollections");
-
-
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- localVarRequestOptions.PathParameters.Add("chain_name", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(chainName)); // path parameter
- if (contractAddress != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("multi", "contract_address", contractAddress));
- }
- if (verificationStatus != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("multi", "verification_status", verificationStatus));
- }
- if (fromUpdatedAt != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "from_updated_at", fromUpdatedAt));
- }
- if (pageCursor != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_cursor", pageCursor));
- }
- if (pageSize != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_size", pageSize));
- }
-
-
- // make the HTTP request
-
- var task = this.AsynchronousClient.GetAsync("/v1/chains/{chain_name}/collections", localVarRequestOptions, this.Configuration, cancellationToken);
-
-#if UNITY_EDITOR || !UNITY_WEBGL
- var localVarResponse = await task.ConfigureAwait(false);
-#else
- var localVarResponse = await task;
-#endif
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("ListCollections", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- ///
- /// List collections by NFT owner List collections by NFT owner account address
- ///
- /// Thrown when fails to make API call
- /// Account address
- /// The name of chain
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ListCollectionsResult
- public ListCollectionsResult ListCollectionsByNFTOwner(string accountAddress, string chainName, string? pageCursor = default(string?), int? pageSize = default(int?))
- {
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = ListCollectionsByNFTOwnerWithHttpInfo(accountAddress, chainName, pageCursor, pageSize);
- return localVarResponse.Data;
- }
-
- ///
- /// List collections by NFT owner List collections by NFT owner account address
- ///
- /// Thrown when fails to make API call
- /// Account address
- /// The name of chain
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ApiResponse of ListCollectionsResult
- public Immutable.Api.ZkEvm.Client.ApiResponse ListCollectionsByNFTOwnerWithHttpInfo(string accountAddress, string chainName, string? pageCursor = default(string?), int? pageSize = default(int?))
- {
- // verify the required parameter 'accountAddress' is set
- if (accountAddress == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'accountAddress' when calling CollectionsApi->ListCollectionsByNFTOwner");
-
- // verify the required parameter 'chainName' is set
- if (chainName == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'chainName' when calling CollectionsApi->ListCollectionsByNFTOwner");
-
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- localVarRequestOptions.PathParameters.Add("account_address", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(accountAddress)); // path parameter
- localVarRequestOptions.PathParameters.Add("chain_name", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(chainName)); // path parameter
- if (pageCursor != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_cursor", pageCursor));
- }
- if (pageSize != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_size", pageSize));
- }
-
-
- // make the HTTP request
- var localVarResponse = this.Client.Get("/v1/chains/{chain_name}/accounts/{account_address}/collections", localVarRequestOptions, this.Configuration);
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("ListCollectionsByNFTOwner", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- ///
- /// List collections by NFT owner List collections by NFT owner account address
- ///
- /// Thrown when fails to make API call
- /// Account address
- /// The name of chain
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ListCollectionsResult
- public async System.Threading.Tasks.Task ListCollectionsByNFTOwnerAsync(string accountAddress, string chainName, string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
- var task = ListCollectionsByNFTOwnerWithHttpInfoAsync(accountAddress, chainName, pageCursor, pageSize, cancellationToken);
-#if UNITY_EDITOR || !UNITY_WEBGL
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task.ConfigureAwait(false);
-#else
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task;
-#endif
- return localVarResponse.Data;
- }
-
- ///
- /// List collections by NFT owner List collections by NFT owner account address
- ///
- /// Thrown when fails to make API call
- /// Account address
- /// The name of chain
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (ListCollectionsResult)
- public async System.Threading.Tasks.Task> ListCollectionsByNFTOwnerWithHttpInfoAsync(string accountAddress, string chainName, string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
- // verify the required parameter 'accountAddress' is set
- if (accountAddress == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'accountAddress' when calling CollectionsApi->ListCollectionsByNFTOwner");
-
- // verify the required parameter 'chainName' is set
- if (chainName == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'chainName' when calling CollectionsApi->ListCollectionsByNFTOwner");
-
-
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- localVarRequestOptions.PathParameters.Add("account_address", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(accountAddress)); // path parameter
- localVarRequestOptions.PathParameters.Add("chain_name", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(chainName)); // path parameter
- if (pageCursor != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_cursor", pageCursor));
- }
- if (pageSize != null)
- {
- localVarRequestOptions.QueryParameters.Add(Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToMultiMap("", "page_size", pageSize));
- }
-
-
- // make the HTTP request
-
- var task = this.AsynchronousClient.GetAsync("/v1/chains/{chain_name}/accounts/{account_address}/collections", localVarRequestOptions, this.Configuration, cancellationToken);
-
-#if UNITY_EDITOR || !UNITY_WEBGL
- var localVarResponse = await task.ConfigureAwait(false);
-#else
- var localVarResponse = await task;
-#endif
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("ListCollectionsByNFTOwner", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- ///
- /// Refresh collection metadata Refresh collection metadata
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// The request body
- /// RefreshCollectionMetadataResult
- public RefreshCollectionMetadataResult RefreshCollectionMetadata(string contractAddress, string chainName, RefreshCollectionMetadataRequest refreshCollectionMetadataRequest)
- {
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = RefreshCollectionMetadataWithHttpInfo(contractAddress, chainName, refreshCollectionMetadataRequest);
- return localVarResponse.Data;
- }
-
- ///
- /// Refresh collection metadata Refresh collection metadata
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// The request body
- /// ApiResponse of RefreshCollectionMetadataResult
- public Immutable.Api.ZkEvm.Client.ApiResponse RefreshCollectionMetadataWithHttpInfo(string contractAddress, string chainName, RefreshCollectionMetadataRequest refreshCollectionMetadataRequest)
- {
- // verify the required parameter 'contractAddress' is set
- if (contractAddress == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'contractAddress' when calling CollectionsApi->RefreshCollectionMetadata");
-
- // verify the required parameter 'chainName' is set
- if (chainName == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'chainName' when calling CollectionsApi->RefreshCollectionMetadata");
-
- // verify the required parameter 'refreshCollectionMetadataRequest' is set
- if (refreshCollectionMetadataRequest == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'refreshCollectionMetadataRequest' when calling CollectionsApi->RefreshCollectionMetadata");
-
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- "application/json"
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- localVarRequestOptions.PathParameters.Add("contract_address", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(contractAddress)); // path parameter
- localVarRequestOptions.PathParameters.Add("chain_name", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(chainName)); // path parameter
- localVarRequestOptions.Data = refreshCollectionMetadataRequest;
-
- // authentication (BearerAuthWithClient) required
- // bearer authentication required
- if (!string.IsNullOrEmpty(this.Configuration.AccessToken) && !localVarRequestOptions.HeaderParameters.ContainsKey("Authorization"))
- {
- localVarRequestOptions.HeaderParameters.Add("Authorization", "Bearer " + this.Configuration.AccessToken);
- }
- // authentication (ImmutableApiKey) required
- if (!string.IsNullOrEmpty(this.Configuration.GetApiKeyWithPrefix("x-immutable-api-key")))
- {
- localVarRequestOptions.HeaderParameters.Add("x-immutable-api-key", this.Configuration.GetApiKeyWithPrefix("x-immutable-api-key"));
- }
- // authentication (BearerAuth) required
- // bearer authentication required
- if (!string.IsNullOrEmpty(this.Configuration.AccessToken) && !localVarRequestOptions.HeaderParameters.ContainsKey("Authorization"))
- {
- localVarRequestOptions.HeaderParameters.Add("Authorization", "Bearer " + this.Configuration.AccessToken);
- }
-
- // make the HTTP request
- var localVarResponse = this.Client.Post("/v1/chains/{chain_name}/collections/{contract_address}/refresh-metadata", localVarRequestOptions, this.Configuration);
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("RefreshCollectionMetadata", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- ///
- /// Refresh collection metadata Refresh collection metadata
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// The request body
- /// Cancellation Token to cancel the request.
- /// Task of RefreshCollectionMetadataResult
- public async System.Threading.Tasks.Task RefreshCollectionMetadataAsync(string contractAddress, string chainName, RefreshCollectionMetadataRequest refreshCollectionMetadataRequest, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
- var task = RefreshCollectionMetadataWithHttpInfoAsync(contractAddress, chainName, refreshCollectionMetadataRequest, cancellationToken);
-#if UNITY_EDITOR || !UNITY_WEBGL
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task.ConfigureAwait(false);
-#else
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task;
-#endif
- return localVarResponse.Data;
- }
-
- ///
- /// Refresh collection metadata Refresh collection metadata
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// The request body
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (RefreshCollectionMetadataResult)
- public async System.Threading.Tasks.Task> RefreshCollectionMetadataWithHttpInfoAsync(string contractAddress, string chainName, RefreshCollectionMetadataRequest refreshCollectionMetadataRequest, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
- // verify the required parameter 'contractAddress' is set
- if (contractAddress == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'contractAddress' when calling CollectionsApi->RefreshCollectionMetadata");
-
- // verify the required parameter 'chainName' is set
- if (chainName == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'chainName' when calling CollectionsApi->RefreshCollectionMetadata");
-
- // verify the required parameter 'refreshCollectionMetadataRequest' is set
- if (refreshCollectionMetadataRequest == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'refreshCollectionMetadataRequest' when calling CollectionsApi->RefreshCollectionMetadata");
-
-
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- "application/json"
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- localVarRequestOptions.PathParameters.Add("contract_address", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(contractAddress)); // path parameter
- localVarRequestOptions.PathParameters.Add("chain_name", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(chainName)); // path parameter
- localVarRequestOptions.Data = refreshCollectionMetadataRequest;
-
- // authentication (BearerAuthWithClient) required
- // bearer authentication required
- if (!string.IsNullOrEmpty(this.Configuration.AccessToken) && !localVarRequestOptions.HeaderParameters.ContainsKey("Authorization"))
- {
- localVarRequestOptions.HeaderParameters.Add("Authorization", "Bearer " + this.Configuration.AccessToken);
- }
- // authentication (ImmutableApiKey) required
- if (!string.IsNullOrEmpty(this.Configuration.GetApiKeyWithPrefix("x-immutable-api-key")))
- {
- localVarRequestOptions.HeaderParameters.Add("x-immutable-api-key", this.Configuration.GetApiKeyWithPrefix("x-immutable-api-key"));
- }
- // authentication (BearerAuth) required
- // bearer authentication required
- if (!string.IsNullOrEmpty(this.Configuration.AccessToken) && !localVarRequestOptions.HeaderParameters.ContainsKey("Authorization"))
- {
- localVarRequestOptions.HeaderParameters.Add("Authorization", "Bearer " + this.Configuration.AccessToken);
- }
-
- // make the HTTP request
-
- var task = this.AsynchronousClient.PostAsync("/v1/chains/{chain_name}/collections/{contract_address}/refresh-metadata", localVarRequestOptions, this.Configuration, cancellationToken);
-
-#if UNITY_EDITOR || !UNITY_WEBGL
- var localVarResponse = await task.ConfigureAwait(false);
-#else
- var localVarResponse = await task;
-#endif
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("RefreshCollectionMetadata", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- ///
- /// Refresh collection metadata internal Refresh collection metadata internal
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// The environment of the collection
- /// The request body
- /// RefreshCollectionMetadataResult
- public RefreshCollectionMetadataResult RefreshCollectionMetadataInternal(string contractAddress, string chainName, string environment, RefreshCollectionMetadataRequest refreshCollectionMetadataRequest)
- {
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = RefreshCollectionMetadataInternalWithHttpInfo(contractAddress, chainName, environment, refreshCollectionMetadataRequest);
- return localVarResponse.Data;
- }
-
- ///
- /// Refresh collection metadata internal Refresh collection metadata internal
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// The environment of the collection
- /// The request body
- /// ApiResponse of RefreshCollectionMetadataResult
- public Immutable.Api.ZkEvm.Client.ApiResponse RefreshCollectionMetadataInternalWithHttpInfo(string contractAddress, string chainName, string environment, RefreshCollectionMetadataRequest refreshCollectionMetadataRequest)
- {
- // verify the required parameter 'contractAddress' is set
- if (contractAddress == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'contractAddress' when calling CollectionsApi->RefreshCollectionMetadataInternal");
-
- // verify the required parameter 'chainName' is set
- if (chainName == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'chainName' when calling CollectionsApi->RefreshCollectionMetadataInternal");
-
- // verify the required parameter 'environment' is set
- if (environment == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'environment' when calling CollectionsApi->RefreshCollectionMetadataInternal");
-
- // verify the required parameter 'refreshCollectionMetadataRequest' is set
- if (refreshCollectionMetadataRequest == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'refreshCollectionMetadataRequest' when calling CollectionsApi->RefreshCollectionMetadataInternal");
-
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- "application/json"
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- localVarRequestOptions.PathParameters.Add("contract_address", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(contractAddress)); // path parameter
- localVarRequestOptions.PathParameters.Add("chain_name", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(chainName)); // path parameter
- localVarRequestOptions.PathParameters.Add("environment", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(environment)); // path parameter
- localVarRequestOptions.Data = refreshCollectionMetadataRequest;
-
- // authentication (BearerAuthWithClient) required
- // bearer authentication required
- if (!string.IsNullOrEmpty(this.Configuration.AccessToken) && !localVarRequestOptions.HeaderParameters.ContainsKey("Authorization"))
- {
- localVarRequestOptions.HeaderParameters.Add("Authorization", "Bearer " + this.Configuration.AccessToken);
- }
-
- // make the HTTP request
- var localVarResponse = this.Client.Post("/v1/internal/chains/{chain_name}/environment/{environment}/collections/{contract_address}/refresh-metadata", localVarRequestOptions, this.Configuration);
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("RefreshCollectionMetadataInternal", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- ///
- /// Refresh collection metadata internal Refresh collection metadata internal
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// The environment of the collection
- /// The request body
- /// Cancellation Token to cancel the request.
- /// Task of RefreshCollectionMetadataResult
- public async System.Threading.Tasks.Task RefreshCollectionMetadataInternalAsync(string contractAddress, string chainName, string environment, RefreshCollectionMetadataRequest refreshCollectionMetadataRequest, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
- var task = RefreshCollectionMetadataInternalWithHttpInfoAsync(contractAddress, chainName, environment, refreshCollectionMetadataRequest, cancellationToken);
-#if UNITY_EDITOR || !UNITY_WEBGL
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task.ConfigureAwait(false);
-#else
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task;
-#endif
- return localVarResponse.Data;
- }
-
- ///
- /// Refresh collection metadata internal Refresh collection metadata internal
- ///
- /// Thrown when fails to make API call
- /// The address contract
- /// The name of chain
- /// The environment of the collection
- /// The request body
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (RefreshCollectionMetadataResult)
- public async System.Threading.Tasks.Task> RefreshCollectionMetadataInternalWithHttpInfoAsync(string contractAddress, string chainName, string environment, RefreshCollectionMetadataRequest refreshCollectionMetadataRequest, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
- // verify the required parameter 'contractAddress' is set
- if (contractAddress == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'contractAddress' when calling CollectionsApi->RefreshCollectionMetadataInternal");
-
- // verify the required parameter 'chainName' is set
- if (chainName == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'chainName' when calling CollectionsApi->RefreshCollectionMetadataInternal");
-
- // verify the required parameter 'environment' is set
- if (environment == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'environment' when calling CollectionsApi->RefreshCollectionMetadataInternal");
-
- // verify the required parameter 'refreshCollectionMetadataRequest' is set
- if (refreshCollectionMetadataRequest == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'refreshCollectionMetadataRequest' when calling CollectionsApi->RefreshCollectionMetadataInternal");
-
-
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- "application/json"
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- localVarRequestOptions.PathParameters.Add("contract_address", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(contractAddress)); // path parameter
- localVarRequestOptions.PathParameters.Add("chain_name", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(chainName)); // path parameter
- localVarRequestOptions.PathParameters.Add("environment", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(environment)); // path parameter
- localVarRequestOptions.Data = refreshCollectionMetadataRequest;
-
- // authentication (BearerAuthWithClient) required
- // bearer authentication required
- if (!string.IsNullOrEmpty(this.Configuration.AccessToken) && !localVarRequestOptions.HeaderParameters.ContainsKey("Authorization"))
- {
- localVarRequestOptions.HeaderParameters.Add("Authorization", "Bearer " + this.Configuration.AccessToken);
- }
-
- // make the HTTP request
-
- var task = this.AsynchronousClient.PostAsync("/v1/internal/chains/{chain_name}/environment/{environment}/collections/{contract_address}/refresh-metadata", localVarRequestOptions, this.Configuration, cancellationToken);
-
-#if UNITY_EDITOR || !UNITY_WEBGL
- var localVarResponse = await task.ConfigureAwait(false);
-#else
- var localVarResponse = await task;
-#endif
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("RefreshCollectionMetadataInternal", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- }
-}
diff --git a/src/Packages/ZkEvmApi/Runtime/Api/CollectionsApi.cs.meta b/src/Packages/ZkEvmApi/Runtime/Api/CollectionsApi.cs.meta
deleted file mode 100644
index 0c4985c00..000000000
--- a/src/Packages/ZkEvmApi/Runtime/Api/CollectionsApi.cs.meta
+++ /dev/null
@@ -1,11 +0,0 @@
-fileFormatVersion: 2
-guid: 063d3da1d963e18cd939bc604f120e95
-MonoImporter:
- externalObjects: {}
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/src/Packages/ZkEvmApi/Runtime/Api/CraftingApi.cs b/src/Packages/ZkEvmApi/Runtime/Api/CraftingApi.cs
deleted file mode 100644
index 2d1d45a76..000000000
--- a/src/Packages/ZkEvmApi/Runtime/Api/CraftingApi.cs
+++ /dev/null
@@ -1,384 +0,0 @@
-/*
- * Immutable zkEVM API
- *
- * Immutable Multi Rollup API
- *
- * The version of the OpenAPI document: 1.0.0
- * Contact: support@immutable.com
- * Generated by: https://github.com/openapitools/openapi-generator.git
- */
-
-
-using System;
-using System.Collections.Generic;
-using System.Collections.ObjectModel;
-using System.Linq;
-using System.Net;
-using System.Net.Mime;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Immutable.Api.ZkEvm.Api
-{
-
- ///
- /// Represents a collection of functions to interact with the API endpoints
- ///
- public interface ICraftingApiSync : IApiAccessor
- {
- #region Synchronous Operations
- ///
- /// Sign a crafting payload
- ///
- ///
- /// Sign a crafting payload
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The request body
- /// SignCraftingResult
- SignCraftingResult SignCraftingPayload(string chainName, SignCraftingRequest signCraftingRequest);
-
- ///
- /// Sign a crafting payload
- ///
- ///
- /// Sign a crafting payload
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The request body
- /// ApiResponse of SignCraftingResult
- ApiResponse SignCraftingPayloadWithHttpInfo(string chainName, SignCraftingRequest signCraftingRequest);
- #endregion Synchronous Operations
- }
-
- ///
- /// Represents a collection of functions to interact with the API endpoints
- ///
- public interface ICraftingApiAsync : IApiAccessor
- {
- #region Asynchronous Operations
- ///
- /// Sign a crafting payload
- ///
- ///
- /// Sign a crafting payload
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The request body
- /// Cancellation Token to cancel the request.
- /// Task of SignCraftingResult
- System.Threading.Tasks.Task SignCraftingPayloadAsync(string chainName, SignCraftingRequest signCraftingRequest, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
-
- ///
- /// Sign a crafting payload
- ///
- ///
- /// Sign a crafting payload
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The request body
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (SignCraftingResult)
- System.Threading.Tasks.Task> SignCraftingPayloadWithHttpInfoAsync(string chainName, SignCraftingRequest signCraftingRequest, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
- #endregion Asynchronous Operations
- }
-
- ///
- /// Represents a collection of functions to interact with the API endpoints
- ///
- public interface ICraftingApi : ICraftingApiSync, ICraftingApiAsync
- {
-
- }
-
- ///
- /// Represents a collection of functions to interact with the API endpoints
- ///
- public partial class CraftingApi : IDisposable, ICraftingApi
- {
- private Immutable.Api.ZkEvm.Client.ExceptionFactory _exceptionFactory = (name, response) => null;
-
- ///
- /// Initializes a new instance of the class.
- /// **IMPORTANT** This will also create an instance of HttpClient, which is less than ideal.
- /// It's better to reuse the HttpClient and HttpClientHandler.
- ///
- ///
- public CraftingApi() : this((string)null)
- {
- }
-
- ///
- /// Initializes a new instance of the class.
- /// **IMPORTANT** This will also create an instance of HttpClient, which is less than ideal.
- /// It's better to reuse the HttpClient and HttpClientHandler.
- ///
- /// The target service's base path in URL format.
- ///
- ///
- public CraftingApi(string basePath)
- {
- this.Configuration = Immutable.Api.ZkEvm.Client.Configuration.MergeConfigurations(
- Immutable.Api.ZkEvm.Client.GlobalConfiguration.Instance,
- new Immutable.Api.ZkEvm.Client.Configuration { BasePath = basePath }
- );
- this.ApiClient = new Immutable.Api.ZkEvm.Client.ApiClient(this.Configuration.BasePath);
- this.Client = this.ApiClient;
- this.AsynchronousClient = this.ApiClient;
- this.ExceptionFactory = Immutable.Api.ZkEvm.Client.Configuration.DefaultExceptionFactory;
- }
-
- ///
- /// Initializes a new instance of the class using Configuration object.
- /// **IMPORTANT** This will also create an instance of HttpClient, which is less than ideal.
- /// It's better to reuse the HttpClient and HttpClientHandler.
- ///
- /// An instance of Configuration.
- ///
- ///
- public CraftingApi(Immutable.Api.ZkEvm.Client.Configuration configuration)
- {
- if (configuration == null) throw new ArgumentNullException("configuration");
-
- this.Configuration = Immutable.Api.ZkEvm.Client.Configuration.MergeConfigurations(
- Immutable.Api.ZkEvm.Client.GlobalConfiguration.Instance,
- configuration
- );
- this.ApiClient = new Immutable.Api.ZkEvm.Client.ApiClient(this.Configuration.BasePath);
- this.Client = this.ApiClient;
- this.AsynchronousClient = this.ApiClient;
- ExceptionFactory = Immutable.Api.ZkEvm.Client.Configuration.DefaultExceptionFactory;
- }
-
- ///
- /// Initializes a new instance of the class
- /// using a Configuration object and client instance.
- ///
- /// The client interface for synchronous API access.
- /// The client interface for asynchronous API access.
- /// The configuration object.
- ///
- public CraftingApi(Immutable.Api.ZkEvm.Client.ISynchronousClient client, Immutable.Api.ZkEvm.Client.IAsynchronousClient asyncClient, Immutable.Api.ZkEvm.Client.IReadableConfiguration configuration)
- {
- if (client == null) throw new ArgumentNullException("client");
- if (asyncClient == null) throw new ArgumentNullException("asyncClient");
- if (configuration == null) throw new ArgumentNullException("configuration");
-
- this.Client = client;
- this.AsynchronousClient = asyncClient;
- this.Configuration = configuration;
- this.ExceptionFactory = Immutable.Api.ZkEvm.Client.Configuration.DefaultExceptionFactory;
- }
-
- ///
- /// Disposes resources if they were created by us
- ///
- public void Dispose()
- {
- this.ApiClient?.Dispose();
- }
-
- ///
- /// Holds the ApiClient if created
- ///
- public Immutable.Api.ZkEvm.Client.ApiClient ApiClient { get; set; } = null;
-
- ///
- /// The client for accessing this underlying API asynchronously.
- ///
- public Immutable.Api.ZkEvm.Client.IAsynchronousClient AsynchronousClient { get; set; }
-
- ///
- /// The client for accessing this underlying API synchronously.
- ///
- public Immutable.Api.ZkEvm.Client.ISynchronousClient Client { get; set; }
-
- ///
- /// Gets the base path of the API client.
- ///
- /// The base path
- public string GetBasePath()
- {
- return this.Configuration.BasePath;
- }
-
- ///
- /// Gets or sets the configuration object
- ///
- /// An instance of the Configuration
- public Immutable.Api.ZkEvm.Client.IReadableConfiguration Configuration { get; set; }
-
- ///
- /// Provides a factory method hook for the creation of exceptions.
- ///
- public Immutable.Api.ZkEvm.Client.ExceptionFactory ExceptionFactory
- {
- get
- {
- if (_exceptionFactory != null && _exceptionFactory.GetInvocationList().Length > 1)
- {
- throw new InvalidOperationException("Multicast delegate for ExceptionFactory is unsupported.");
- }
- return _exceptionFactory;
- }
- set { _exceptionFactory = value; }
- }
-
- ///
- /// Sign a crafting payload Sign a crafting payload
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The request body
- /// SignCraftingResult
- public SignCraftingResult SignCraftingPayload(string chainName, SignCraftingRequest signCraftingRequest)
- {
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = SignCraftingPayloadWithHttpInfo(chainName, signCraftingRequest);
- return localVarResponse.Data;
- }
-
- ///
- /// Sign a crafting payload Sign a crafting payload
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The request body
- /// ApiResponse of SignCraftingResult
- public Immutable.Api.ZkEvm.Client.ApiResponse SignCraftingPayloadWithHttpInfo(string chainName, SignCraftingRequest signCraftingRequest)
- {
- // verify the required parameter 'chainName' is set
- if (chainName == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'chainName' when calling CraftingApi->SignCraftingPayload");
-
- // verify the required parameter 'signCraftingRequest' is set
- if (signCraftingRequest == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'signCraftingRequest' when calling CraftingApi->SignCraftingPayload");
-
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- "application/json"
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- localVarRequestOptions.PathParameters.Add("chain_name", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(chainName)); // path parameter
- localVarRequestOptions.Data = signCraftingRequest;
-
- // authentication (ImmutableApiKey) required
- if (!string.IsNullOrEmpty(this.Configuration.GetApiKeyWithPrefix("x-immutable-api-key")))
- {
- localVarRequestOptions.HeaderParameters.Add("x-immutable-api-key", this.Configuration.GetApiKeyWithPrefix("x-immutable-api-key"));
- }
-
- // make the HTTP request
- var localVarResponse = this.Client.Post("/v1/chains/{chain_name}/crafting/sign", localVarRequestOptions, this.Configuration);
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("SignCraftingPayload", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- ///
- /// Sign a crafting payload Sign a crafting payload
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The request body
- /// Cancellation Token to cancel the request.
- /// Task of SignCraftingResult
- public async System.Threading.Tasks.Task SignCraftingPayloadAsync(string chainName, SignCraftingRequest signCraftingRequest, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
- var task = SignCraftingPayloadWithHttpInfoAsync(chainName, signCraftingRequest, cancellationToken);
-#if UNITY_EDITOR || !UNITY_WEBGL
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task.ConfigureAwait(false);
-#else
- Immutable.Api.ZkEvm.Client.ApiResponse localVarResponse = await task;
-#endif
- return localVarResponse.Data;
- }
-
- ///
- /// Sign a crafting payload Sign a crafting payload
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The request body
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (SignCraftingResult)
- public async System.Threading.Tasks.Task> SignCraftingPayloadWithHttpInfoAsync(string chainName, SignCraftingRequest signCraftingRequest, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
- {
- // verify the required parameter 'chainName' is set
- if (chainName == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'chainName' when calling CraftingApi->SignCraftingPayload");
-
- // verify the required parameter 'signCraftingRequest' is set
- if (signCraftingRequest == null)
- throw new Immutable.Api.ZkEvm.Client.ApiException(400, "Missing required parameter 'signCraftingRequest' when calling CraftingApi->SignCraftingPayload");
-
-
- Immutable.Api.ZkEvm.Client.RequestOptions localVarRequestOptions = new Immutable.Api.ZkEvm.Client.RequestOptions();
-
- string[] _contentTypes = new string[] {
- "application/json"
- };
-
- // to determine the Accept header
- string[] _accepts = new string[] {
- "application/json"
- };
-
-
- var localVarContentType = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderContentType(_contentTypes);
- if (localVarContentType != null) localVarRequestOptions.HeaderParameters.Add("Content-Type", localVarContentType);
-
- var localVarAccept = Immutable.Api.ZkEvm.Client.ClientUtils.SelectHeaderAccept(_accepts);
- if (localVarAccept != null) localVarRequestOptions.HeaderParameters.Add("Accept", localVarAccept);
-
- localVarRequestOptions.PathParameters.Add("chain_name", Immutable.Api.ZkEvm.Client.ClientUtils.ParameterToString(chainName)); // path parameter
- localVarRequestOptions.Data = signCraftingRequest;
-
- // authentication (ImmutableApiKey) required
- if (!string.IsNullOrEmpty(this.Configuration.GetApiKeyWithPrefix("x-immutable-api-key")))
- {
- localVarRequestOptions.HeaderParameters.Add("x-immutable-api-key", this.Configuration.GetApiKeyWithPrefix("x-immutable-api-key"));
- }
-
- // make the HTTP request
-
- var task = this.AsynchronousClient.PostAsync("/v1/chains/{chain_name}/crafting/sign", localVarRequestOptions, this.Configuration, cancellationToken);
-
-#if UNITY_EDITOR || !UNITY_WEBGL
- var localVarResponse = await task.ConfigureAwait(false);
-#else
- var localVarResponse = await task;
-#endif
-
- if (this.ExceptionFactory != null)
- {
- Exception _exception = this.ExceptionFactory("SignCraftingPayload", localVarResponse);
- if (_exception != null) throw _exception;
- }
-
- return localVarResponse;
- }
-
- }
-}
diff --git a/src/Packages/ZkEvmApi/Runtime/Api/CraftingApi.cs.meta b/src/Packages/ZkEvmApi/Runtime/Api/CraftingApi.cs.meta
deleted file mode 100644
index eca070a7e..000000000
--- a/src/Packages/ZkEvmApi/Runtime/Api/CraftingApi.cs.meta
+++ /dev/null
@@ -1,11 +0,0 @@
-fileFormatVersion: 2
-guid: b71bc2ddd9edfb4ecace0bebf059706e
-MonoImporter:
- externalObjects: {}
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/src/Packages/ZkEvmApi/Runtime/Api/MetadataApi.cs b/src/Packages/ZkEvmApi/Runtime/Api/MetadataApi.cs
deleted file mode 100644
index f45f010cd..000000000
--- a/src/Packages/ZkEvmApi/Runtime/Api/MetadataApi.cs
+++ /dev/null
@@ -1,1460 +0,0 @@
-/*
- * Immutable zkEVM API
- *
- * Immutable Multi Rollup API
- *
- * The version of the OpenAPI document: 1.0.0
- * Contact: support@immutable.com
- * Generated by: https://github.com/openapitools/openapi-generator.git
- */
-
-
-using System;
-using System.Collections.Generic;
-using System.Collections.ObjectModel;
-using System.Linq;
-using System.Net;
-using System.Net.Mime;
-using Immutable.Api.ZkEvm.Client;
-using Immutable.Api.ZkEvm.Model;
-
-namespace Immutable.Api.ZkEvm.Api
-{
-
- ///
- /// Represents a collection of functions to interact with the API endpoints
- ///
- public interface IMetadataApiSync : IApiAccessor
- {
- #region Synchronous Operations
- ///
- /// Get metadata by ID
- ///
- ///
- /// Get metadata by ID
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The address of metadata contract
- /// The id of the metadata
- /// GetMetadataResult
- GetMetadataResult GetMetadata(string chainName, string contractAddress, Guid metadataId);
-
- ///
- /// Get metadata by ID
- ///
- ///
- /// Get metadata by ID
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The address of metadata contract
- /// The id of the metadata
- /// ApiResponse of GetMetadataResult
- ApiResponse GetMetadataWithHttpInfo(string chainName, string contractAddress, Guid metadataId);
- ///
- /// Get a list of metadata from the given contract
- ///
- ///
- /// Get a list of metadata from the given contract
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The address of metadata contract
- /// Datetime to use as the oldest updated timestamp (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ListMetadataResult
- ListMetadataResult ListMetadata(string chainName, string contractAddress, DateTime? fromUpdatedAt = default(DateTime?), string? pageCursor = default(string?), int? pageSize = default(int?));
-
- ///
- /// Get a list of metadata from the given contract
- ///
- ///
- /// Get a list of metadata from the given contract
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The address of metadata contract
- /// Datetime to use as the oldest updated timestamp (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ApiResponse of ListMetadataResult
- ApiResponse ListMetadataWithHttpInfo(string chainName, string contractAddress, DateTime? fromUpdatedAt = default(DateTime?), string? pageCursor = default(string?), int? pageSize = default(int?));
- ///
- /// Get a list of metadata from the given chain
- ///
- ///
- /// Get a list of metadata from the given chain
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// Datetime to use as the oldest updated timestamp (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ListMetadataResult
- ListMetadataResult ListMetadataForChain(string chainName, DateTime? fromUpdatedAt = default(DateTime?), string? pageCursor = default(string?), int? pageSize = default(int?));
-
- ///
- /// Get a list of metadata from the given chain
- ///
- ///
- /// Get a list of metadata from the given chain
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// Datetime to use as the oldest updated timestamp (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// ApiResponse of ListMetadataResult
- ApiResponse ListMetadataForChainWithHttpInfo(string chainName, DateTime? fromUpdatedAt = default(DateTime?), string? pageCursor = default(string?), int? pageSize = default(int?));
- ///
- /// List NFT stack bundles by stack_id. Response will include Market, Listings & Stack Count information for each stack
- ///
- ///
- /// List NFT stack bundles by stack_id. This endpoint functions similarly to `ListMetadataByID` but extends the response to include Market, Listings & Stack Count information for each stack.
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// List of stack_id to filter by
- /// List<StackBundle>
- List ListStacks(string chainName, List stackId);
-
- ///
- /// List NFT stack bundles by stack_id. Response will include Market, Listings & Stack Count information for each stack
- ///
- ///
- /// List NFT stack bundles by stack_id. This endpoint functions similarly to `ListMetadataByID` but extends the response to include Market, Listings & Stack Count information for each stack.
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// List of stack_id to filter by
- /// ApiResponse of List<StackBundle>
- ApiResponse> ListStacksWithHttpInfo(string chainName, List stackId);
- ///
- /// Refresh stacked metadata
- ///
- ///
- /// Refresh stacked metadata
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// Contract address
- /// NFT Metadata Refresh Request
- /// MetadataRefreshRateLimitResult
- MetadataRefreshRateLimitResult RefreshMetadataByID(string chainName, string contractAddress, RefreshMetadataByIDRequest refreshMetadataByIDRequest);
-
- ///
- /// Refresh stacked metadata
- ///
- ///
- /// Refresh stacked metadata
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// Contract address
- /// NFT Metadata Refresh Request
- /// ApiResponse of MetadataRefreshRateLimitResult
- ApiResponse RefreshMetadataByIDWithHttpInfo(string chainName, string contractAddress, RefreshMetadataByIDRequest refreshMetadataByIDRequest);
- ///
- /// Refresh NFT metadata
- ///
- ///
- /// Refresh NFT metadata
- ///
- /// Thrown when fails to make API call
- /// The address of contract
- /// The name of chain
- /// the request body
- /// MetadataRefreshRateLimitResult
- MetadataRefreshRateLimitResult RefreshNFTMetadataByTokenID(string contractAddress, string chainName, RefreshNFTMetadataByTokenIDRequest refreshNFTMetadataByTokenIDRequest);
-
- ///
- /// Refresh NFT metadata
- ///
- ///
- /// Refresh NFT metadata
- ///
- /// Thrown when fails to make API call
- /// The address of contract
- /// The name of chain
- /// the request body
- /// ApiResponse of MetadataRefreshRateLimitResult
- ApiResponse RefreshNFTMetadataByTokenIDWithHttpInfo(string contractAddress, string chainName, RefreshNFTMetadataByTokenIDRequest refreshNFTMetadataByTokenIDRequest);
- #endregion Synchronous Operations
- }
-
- ///
- /// Represents a collection of functions to interact with the API endpoints
- ///
- public interface IMetadataApiAsync : IApiAccessor
- {
- #region Asynchronous Operations
- ///
- /// Get metadata by ID
- ///
- ///
- /// Get metadata by ID
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The address of metadata contract
- /// The id of the metadata
- /// Cancellation Token to cancel the request.
- /// Task of GetMetadataResult
- System.Threading.Tasks.Task GetMetadataAsync(string chainName, string contractAddress, Guid metadataId, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
-
- ///
- /// Get metadata by ID
- ///
- ///
- /// Get metadata by ID
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The address of metadata contract
- /// The id of the metadata
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (GetMetadataResult)
- System.Threading.Tasks.Task> GetMetadataWithHttpInfoAsync(string chainName, string contractAddress, Guid metadataId, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
- ///
- /// Get a list of metadata from the given contract
- ///
- ///
- /// Get a list of metadata from the given contract
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The address of metadata contract
- /// Datetime to use as the oldest updated timestamp (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ListMetadataResult
- System.Threading.Tasks.Task ListMetadataAsync(string chainName, string contractAddress, DateTime? fromUpdatedAt = default(DateTime?), string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
-
- ///
- /// Get a list of metadata from the given contract
- ///
- ///
- /// Get a list of metadata from the given contract
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// The address of metadata contract
- /// Datetime to use as the oldest updated timestamp (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (ListMetadataResult)
- System.Threading.Tasks.Task> ListMetadataWithHttpInfoAsync(string chainName, string contractAddress, DateTime? fromUpdatedAt = default(DateTime?), string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
- ///
- /// Get a list of metadata from the given chain
- ///
- ///
- /// Get a list of metadata from the given chain
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// Datetime to use as the oldest updated timestamp (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ListMetadataResult
- System.Threading.Tasks.Task ListMetadataForChainAsync(string chainName, DateTime? fromUpdatedAt = default(DateTime?), string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
-
- ///
- /// Get a list of metadata from the given chain
- ///
- ///
- /// Get a list of metadata from the given chain
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// Datetime to use as the oldest updated timestamp (optional)
- /// Encoded page cursor to retrieve previous or next page. Use the value returned in the response. (optional)
- /// Maximum number of items to return (optional, default to 100)
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (ListMetadataResult)
- System.Threading.Tasks.Task> ListMetadataForChainWithHttpInfoAsync(string chainName, DateTime? fromUpdatedAt = default(DateTime?), string? pageCursor = default(string?), int? pageSize = default(int?), System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
- ///
- /// List NFT stack bundles by stack_id. Response will include Market, Listings & Stack Count information for each stack
- ///
- ///
- /// List NFT stack bundles by stack_id. This endpoint functions similarly to `ListMetadataByID` but extends the response to include Market, Listings & Stack Count information for each stack.
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// List of stack_id to filter by
- /// Cancellation Token to cancel the request.
- /// Task of List<StackBundle>
- System.Threading.Tasks.Task> ListStacksAsync(string chainName, List stackId, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
-
- ///
- /// List NFT stack bundles by stack_id. Response will include Market, Listings & Stack Count information for each stack
- ///
- ///
- /// List NFT stack bundles by stack_id. This endpoint functions similarly to `ListMetadataByID` but extends the response to include Market, Listings & Stack Count information for each stack.
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// List of stack_id to filter by
- /// Cancellation Token to cancel the request.
- /// Task of ApiResponse (List<StackBundle>)
- System.Threading.Tasks.Task>> ListStacksWithHttpInfoAsync(string chainName, List stackId, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
- ///
- /// Refresh stacked metadata
- ///
- ///
- /// Refresh stacked metadata
- ///
- /// Thrown when fails to make API call
- /// The name of chain
- /// Contract address
- /// NFT Metadata Refresh Request
- /// Cancellation Token to cancel the request.
- /// Task of MetadataRefreshRateLimitResult
- System.Threading.Tasks.Task RefreshMetadataByIDAsync(string chainName, string contractAddress, RefreshMetadataByIDRequest refreshMetadataByIDRequest, System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken));
-
- ///